diff --git a/README.md b/README.md index f87d2b58c1061e8b1e1ae23d28b8a2f0b3bfc055..a30f7d30987ab6a49ce3580780aaa1ba5da54f15 100644 --- a/README.md +++ b/README.md @@ -1,50 +1,29 @@ # [![BlenDB Logo](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/logo-wide.png)](https://gitlab.c3sl.ufpr.br/c3sl/blendb) -[![Build Status](https://gitlab.c3sl.ufpr.br/c3sl/blendb/badges/master/build.svg)](https://gitlab.c3sl.ufpr.br/c3sl/blendb/commits/master) -[![Coverage Report](https://gitlab.c3sl.ufpr.br/c3sl/blendb/badges/master/coverage.svg)](https://gitlab.c3sl.ufpr.br/c3sl/blendb/builds) -

-Getting Started -| -API Reference -| -Contributing -| -License -| -Built With -

+## WARNING +This branch has been frozen in the version used to perform the experiments to +ICDE2019 Conference. This version of the source code is EXACTLY the same used +in the experiments. To the most recent version, check out the develop branch. +To the last stable version, check out the master branch. -
+## Experiment method -## Getting Started +All experiment data, analysis and extraction tools are contained in the +**experiments** diretory. The remaining files are the original source code +of BlenDB, use in the experiments. -### Installing +The test tool can be used to test the performance of any function in +BlenDB source code. -``` -git clone https://gitlab.c3sl.ufpr.br/c3sl/blendb.git -npm install -``` +The results of the experiments are the performance of the functions: -### Running +Engine.query() +Adapter.getDataFromView() -``` -npm start -``` +To better understand BlenDB check out the other branches. -## API Reference +## Schema Files -Check the documentation [here](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/doc/api-v1-reference.html). - -## Contributing - -Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting merge requests to us. - -## License - -This project is licensed under the GPLv3 License -- see the [LICENSE](LICENSE) file for details - -## Built With - -| [![express](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/built-with/express.png)](https://expressjs.com) | [![TypeScript](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/built-with/typescript.png)](https://www.typescriptlang.org/) | [![RAML](https://gitlab.c3sl.ufpr.br/c3sl/blendb/raw/master/artwork/built-with/raml.png)](http://raml.org/) | -|:---:|:---:|:---:| -|express|TypeScript|RAML| +The schema file were very large and removed from the branch, however +they can be easyly generated using the script **genGraph.sh** and +**testGen.sh** diff --git a/experiments/calc.R b/experiments/calc.R new file mode 100755 index 0000000000000000000000000000000000000000..f2b8a0d132ea9c5a5c552671a874297c8b12fc4f --- /dev/null +++ b/experiments/calc.R @@ -0,0 +1,39 @@ +#!/usr/bin/env Rscript + +opt <- commandArgs(TRUE) +if( length(opt) == 0 ) { + stop("Passe o nome do arquivo com uma coluna de valores.") +} + +ConfidenceInterval <- function(conf, avg, sde, size) { + error <- qnorm(conf) * sde / sqrt(size) + left <- avg - error + right <- avg + error + + return( list("left" = left, "right" = right) ) +} + + +vals <- read.table(opt, header=FALSE, sep=" ")[,2] +un_vals <- unlist(vals) + +avg <- mean(un_vals) +median <- median(un_vals) +sde <- sd(un_vals) +vari <- var(un_vals) +cv <- sde / avg +mi <- min(un_vals) +ma <- max(un_vals) + +message(paste("Media =", round(avg, 2))) +message(paste("Mediana =", round(median, 2))) +message(paste("Variancia =", round(vari, 2))) +message(paste("Desvio Padrao =", round(sde, 2))) +message(paste("Coef. Variacao =", round(cv, 2))) +message(paste("Min =", mi)) +message(paste("Max =", ma)) + +lr <- ConfidenceInterval(0.95, avg, sde, length(un_vals)) +# message("Intervalo de confianca") +message(paste("Esq, Dir. =", round(lr$left, 4), ",", round(lr$right, 4))) + diff --git a/experiments/csvify.sh b/experiments/csvify.sh new file mode 100755 index 0000000000000000000000000000000000000000..7d40e28980eeb1691e8ded6dbcebf6178b1f2406 --- /dev/null +++ b/experiments/csvify.sh @@ -0,0 +1,27 @@ +#! /bin/bash + +dirList="2018-09-27" +outputLinearView="results/linearView.csv" +outputLinearSQL="results/linearSQL.csv" + +files="" +for dir in $dirList; do + files="$files $(find $dir | grep '.test')" +done + +for file in $files; do + cat $file | grep 'LayoutView' | grep 'ms)' | cut -d';' -f2 > tmp.tmp + header=$(cat tmp.tmp | cut -d' ' -f1 | cut -d'=' -f2| tr '\n' ';' | sed -e 's/;$//') + line=$(cat tmp.tmp | cut -d' ' -f2 | sed -e 's/m\|s\|(\|)//g' | tr '\n' ';' | sed -e 's/;$//') + touch $outputLinearView + fileHeader=$(head -n1 $outputLinearView) + if [[ $header == $fileHeader ]]; then + echo "$line" >> $outputLinearView + else + if [[ $(wc -l $outputLinearView) -eq 0 ]]; then + echo "$header" > $outputLinearView + echo "$line" >> $outputLinearView + fi + fi + rm tmp.tmp +done diff --git a/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b68da65f40cde9d559e7177fb4798017e6ad9247 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 696.9 +Mediana = 693.5 +Variancia = 2106.52 +Desvio Padrao = 45.9 +Coef. Variacao = 0.07 +Min = 615 +Max = 826 +Esq, Dir. = 680.0191 , 713.7809 diff --git a/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..02f807e8e9197e2b8db0a22cdb3d5a8a668b5265 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/1024-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +1024 736 +1024 679 +1024 826 +1024 700 +1024 679 +1024 686 +1024 661 +1024 735 +1024 687 +1024 730 +1024 635 +1024 615 +1024 667 +1024 711 +1024 722 +1024 732 +1024 714 +1024 709 +1024 659 +1024 655 diff --git a/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..65eeb2e1a8c4bb9b3370997002b13a14d9fcd18d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 909.7 +Mediana = 911 +Variancia = 1848.96 +Desvio Padrao = 43 +Coef. Variacao = 0.05 +Min = 833 +Max = 987 +Esq, Dir. = 893.8848 , 925.5152 diff --git a/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..84060a370c220201a62281c9c119f6ee8273b166 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/1024-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +1024 987 +1024 863 +1024 900 +1024 856 +1024 949 +1024 885 +1024 936 +1024 921 +1024 833 +1024 875 +1024 859 +1024 973 +1024 942 +1024 868 +1024 914 +1024 925 +1024 975 +1024 908 +1024 908 +1024 917 diff --git a/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..06e94ced2e6f8e80dfa1820bfac74c515b2373b4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1650.85 +Mediana = 1620.5 +Variancia = 10177.08 +Desvio Padrao = 100.88 +Coef. Variacao = 0.06 +Min = 1514 +Max = 1855 +Esq, Dir. = 1613.7457 , 1687.9543 diff --git a/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..647a0d60cc1a37bd484c5904be80593a7e4cc0e1 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/1024-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +1024 1767 +1024 1715 +1024 1582 +1024 1622 +1024 1682 +1024 1657 +1024 1849 +1024 1618 +1024 1779 +1024 1701 +1024 1619 +1024 1666 +1024 1567 +1024 1527 +1024 1535 +1024 1514 +1024 1855 +1024 1594 +1024 1596 +1024 1572 diff --git a/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..3f75963feef0424cc947c40e632e00b4336a4bc4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 443.75 +Mediana = 439 +Variancia = 693.78 +Desvio Padrao = 26.34 +Coef. Variacao = 0.06 +Min = 411 +Max = 514 +Esq, Dir. = 434.0623 , 453.4377 diff --git a/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..dc68db6245b18805fd14b1c2aa5c7313a7f13148 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/128-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +128 497 +128 425 +128 465 +128 447 +128 431 +128 450 +128 420 +128 424 +128 459 +128 441 +128 423 +128 411 +128 434 +128 514 +128 449 +128 454 +128 456 +128 437 +128 424 +128 414 diff --git a/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..388777e50e43a0f4cf533c17cd744eb8ad730de8 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 815.95 +Mediana = 824 +Variancia = 2620.26 +Desvio Padrao = 51.19 +Coef. Variacao = 0.06 +Min = 740 +Max = 903 +Esq, Dir. = 797.1229 , 834.7771 diff --git a/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e2fe082a7c8e2bd07e300fd3af753bc2bdfbb073 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/128-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +128 898 +128 756 +128 872 +128 764 +128 862 +128 784 +128 848 +128 772 +128 740 +128 796 +128 758 +128 903 +128 844 +128 769 +128 822 +128 826 +128 879 +128 828 +128 763 +128 835 diff --git a/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..cb82000cdb2092f77984a848d2e2424027be466a --- /dev/null +++ b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1589.75 +Mediana = 1580 +Variancia = 7505.46 +Desvio Padrao = 86.63 +Coef. Variacao = 0.05 +Min = 1472 +Max = 1814 +Esq, Dir. = 1557.886 , 1621.614 diff --git a/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..6af256ee00e31ec37dc07277018296a5605af933 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/128-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +128 1598 +128 1682 +128 1538 +128 1584 +128 1583 +128 1620 +128 1696 +128 1554 +128 1670 +128 1676 +128 1472 +128 1629 +128 1515 +128 1476 +128 1525 +128 1478 +128 1814 +128 1577 +128 1566 +128 1542 diff --git a/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..9ceb3fa1a1c356e524b36f8c3b84efe81dbe74e2 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 701.55 +Mediana = 698 +Variancia = 1521.52 +Desvio Padrao = 39.01 +Coef. Variacao = 0.06 +Min = 626 +Max = 796 +Esq, Dir. = 687.2033 , 715.8967 diff --git a/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..0beea0b66688cc49674f9c19bfd4031bdbb702a9 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +16 730 +16 705 +16 697 +16 745 +16 691 +16 693 +16 690 +16 665 +16 702 +16 696 +16 626 +16 626 +16 699 +16 796 +16 718 +16 724 +16 747 +16 674 +16 687 +16 720 diff --git a/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..4b000046885b6274844417fd4f9280c2d3b1cc91 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1195.05 +Mediana = 1148 +Variancia = 9367.31 +Desvio Padrao = 96.78 +Coef. Variacao = 0.08 +Min = 1086 +Max = 1361 +Esq, Dir. = 1159.4525 , 1230.6475 diff --git a/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..635776cd3ab39fb43ed18798563aedbef36b9270 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +16 1292 +16 1100 +16 1307 +16 1109 +16 1263 +16 1212 +16 1335 +16 1086 +16 1128 +16 1090 +16 1097 +16 1300 +16 1341 +16 1122 +16 1144 +16 1121 +16 1361 +16 1152 +16 1141 +16 1200 diff --git a/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..cb0fb0fca3eef2c03f27a1003bfe874ee271e847 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 2122 +Mediana = 2105 +Variancia = 11836.32 +Desvio Padrao = 108.79 +Coef. Variacao = 0.05 +Min = 1918 +Max = 2401 +Esq, Dir. = 2081.9852 , 2162.0148 diff --git a/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..ecc77a92a713b33dbe278ed560dbe5eb537b19c1 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +16 2087 +16 2266 +16 2041 +16 2097 +16 2158 +16 2185 +16 2201 +16 2101 +16 2197 +16 2191 +16 1918 +16 2165 +16 2100 +16 1983 +16 2082 +16 1957 +16 2401 +16 2066 +16 2135 +16 2109 diff --git a/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..848df5162463d9cad8841a2821becd11d8f5149c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 56748.15 +Mediana = 56557 +Variancia = 13325501.82 +Desvio Padrao = 3650.41 +Coef. Variacao = 0.06 +Min = 50178 +Max = 63235 +Esq, Dir. = 55405.5271 , 58090.7729 diff --git a/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..db2068765165698067d99a1eec4598667e6939e0 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16384-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +16384 59159 +16384 54442 +16384 63221 +16384 56629 +16384 60480 +16384 58591 +16384 54814 +16384 63235 +16384 54688 +16384 57954 +16384 51804 +16384 50178 +16384 52180 +16384 53782 +16384 58723 +16384 56485 +16384 60831 +16384 58633 +16384 54965 +16384 54169 diff --git a/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..747615341a90870f4e23eab71f64674b5085b4bc --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 7896.85 +Mediana = 7861 +Variancia = 95302.24 +Desvio Padrao = 308.71 +Coef. Variacao = 0.04 +Min = 7345 +Max = 8478 +Esq, Dir. = 7783.3061 , 8010.3939 diff --git a/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..891732c6085a5ea7ba55d5ad3491b439d1219fac --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16384-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +16384 7756 +16384 8478 +16384 7731 +16384 7564 +16384 8475 +16384 7968 +16384 8028 +16384 7864 +16384 7566 +16384 7345 +16384 7545 +16384 8185 +16384 8127 +16384 7772 +16384 7771 +16384 8019 +16384 8105 +16384 7858 +16384 7580 +16384 8200 diff --git a/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..7a9d9f3499c9d7fd73ce9a213193306ee01eaa5d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 3444.8 +Mediana = 3431.5 +Variancia = 22332.48 +Desvio Padrao = 149.44 +Coef. Variacao = 0.04 +Min = 3210 +Max = 3739 +Esq, Dir. = 3389.8357 , 3499.7643 diff --git a/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..cbc70ca385d5ff8b32a3089101b9399e0c010d43 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/16384-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +16384 3385 +16384 3584 +16384 3243 +16384 3441 +16384 3552 +16384 3739 +16384 3737 +16384 3462 +16384 3544 +16384 3413 +16384 3422 +16384 3447 +16384 3355 +16384 3210 +16384 3314 +16384 3223 +16384 3604 +16384 3380 +16384 3472 +16384 3369 diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run1.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..83995413976a8722f371935c155d0b6c627c7b37 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (626ms) + ✓ MaxGraphSQL;n=32 (424ms) + ✓ MaxGraphSQL;n=64 (401ms) + ✓ MaxGraphSQL;n=128 (423ms) + ✓ MaxGraphSQL;n=256 (423ms) + ✓ MaxGraphSQL;n=512 (470ms) + ✓ MaxGraphSQL;n=1024 (635ms) + ✓ MaxGraphSQL;n=2048 (1319ms) + ✓ MaxGraphSQL;n=4096 (3598ms) + ✓ MaxGraphSQL;n=8192 (12874ms) + ✓ MaxGraphSQL;n=16384 (51804ms) + ✓ MaxGraphSQL;n=32768 (240310ms) + ✓ MaxGraphSQL;n=65536 (1111129ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run10.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..9d952e38c7090c3c385c1c0af423021c7ba812cc --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (696ms) + ✓ MaxGraphSQL;n=32 (446ms) + ✓ MaxGraphSQL;n=64 (418ms) + ✓ MaxGraphSQL;n=128 (441ms) + ✓ MaxGraphSQL;n=256 (491ms) + ✓ MaxGraphSQL;n=512 (541ms) + ✓ MaxGraphSQL;n=1024 (730ms) + ✓ MaxGraphSQL;n=2048 (1461ms) + ✓ MaxGraphSQL;n=4096 (3839ms) + ✓ MaxGraphSQL;n=8192 (13833ms) + ✓ MaxGraphSQL;n=16384 (57954ms) + ✓ MaxGraphSQL;n=32768 (233982ms) + ✓ MaxGraphSQL;n=65536 (1031495ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run11.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..d5b107a352ccc04a9214c356942ddf49a73169a6 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (720ms) + ✓ MaxGraphSQL;n=32 (416ms) + ✓ MaxGraphSQL;n=64 (414ms) + ✓ MaxGraphSQL;n=128 (414ms) + ✓ MaxGraphSQL;n=256 (418ms) + ✓ MaxGraphSQL;n=512 (469ms) + ✓ MaxGraphSQL;n=1024 (655ms) + ✓ MaxGraphSQL;n=2048 (1391ms) + ✓ MaxGraphSQL;n=4096 (3804ms) + ✓ MaxGraphSQL;n=8192 (13586ms) + ✓ MaxGraphSQL;n=16384 (54169ms) + ✓ MaxGraphSQL;n=32768 (248607ms) + ✓ MaxGraphSQL;n=65536 (1137296ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run12.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..ba93cbfe549f929b895200c650d9e07ba6a8f43d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (665ms) + ✓ MaxGraphSQL;n=32 (445ms) + ✓ MaxGraphSQL;n=64 (417ms) + ✓ MaxGraphSQL;n=128 (424ms) + ✓ MaxGraphSQL;n=256 (438ms) + ✓ MaxGraphSQL;n=512 (489ms) + ✓ MaxGraphSQL;n=1024 (735ms) + ✓ MaxGraphSQL;n=2048 (1494ms) + ✓ MaxGraphSQL;n=4096 (4034ms) + ✓ MaxGraphSQL;n=8192 (14656ms) + ✓ MaxGraphSQL;n=16384 (63235ms) + ✓ MaxGraphSQL;n=32768 (263475ms) + ✓ MaxGraphSQL;n=65536 (1109543ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run13.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..1d8b93ea8073113d599ceb26beffd560b6f0546a --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (724ms) + ✓ MaxGraphSQL;n=32 (437ms) + ✓ MaxGraphSQL;n=64 (430ms) + ✓ MaxGraphSQL;n=128 (454ms) + ✓ MaxGraphSQL;n=256 (499ms) + ✓ MaxGraphSQL;n=512 (554ms) + ✓ MaxGraphSQL;n=1024 (732ms) + ✓ MaxGraphSQL;n=2048 (1440ms) + ✓ MaxGraphSQL;n=4096 (3766ms) + ✓ MaxGraphSQL;n=8192 (13441ms) + ✓ MaxGraphSQL;n=16384 (56485ms) + ✓ MaxGraphSQL;n=32768 (220130ms) + ✓ MaxGraphSQL;n=65536 (960288ms) + + + 13 passing (21m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run14.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..9275d7fa998795fabd6561850a40385dd6ee3762 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (745ms) + ✓ MaxGraphSQL;n=32 (439ms) + ✓ MaxGraphSQL;n=64 (429ms) + ✓ MaxGraphSQL;n=128 (447ms) + ✓ MaxGraphSQL;n=256 (454ms) + ✓ MaxGraphSQL;n=512 (508ms) + ✓ MaxGraphSQL;n=1024 (700ms) + ✓ MaxGraphSQL;n=2048 (1451ms) + ✓ MaxGraphSQL;n=4096 (4027ms) + ✓ MaxGraphSQL;n=8192 (14007ms) + ✓ MaxGraphSQL;n=16384 (56629ms) + ✓ MaxGraphSQL;n=32768 (236217ms) + ✓ MaxGraphSQL;n=65536 (1100360ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run15.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..1b57b350bad68de10d02cc9097b94737c8ee94e0 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (690ms) + ✓ MaxGraphSQL;n=32 (421ms) + ✓ MaxGraphSQL;n=64 (409ms) + ✓ MaxGraphSQL;n=128 (420ms) + ✓ MaxGraphSQL;n=256 (431ms) + ✓ MaxGraphSQL;n=512 (480ms) + ✓ MaxGraphSQL;n=1024 (661ms) + ✓ MaxGraphSQL;n=2048 (1398ms) + ✓ MaxGraphSQL;n=4096 (3818ms) + ✓ MaxGraphSQL;n=8192 (13529ms) + ✓ MaxGraphSQL;n=16384 (54814ms) + ✓ MaxGraphSQL;n=32768 (244875ms) + ✓ MaxGraphSQL;n=65536 (1119651ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run16.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..60ac43f0f39a6413ad40640cdc14a494e3c7436d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (687ms) + ✓ MaxGraphSQL;n=32 (442ms) + ✓ MaxGraphSQL;n=64 (400ms) + ✓ MaxGraphSQL;n=128 (424ms) + ✓ MaxGraphSQL;n=256 (431ms) + ✓ MaxGraphSQL;n=512 (479ms) + ✓ MaxGraphSQL;n=1024 (659ms) + ✓ MaxGraphSQL;n=2048 (1410ms) + ✓ MaxGraphSQL;n=4096 (3849ms) + ✓ MaxGraphSQL;n=8192 (13767ms) + ✓ MaxGraphSQL;n=16384 (54965ms) + ✓ MaxGraphSQL;n=32768 (231844ms) + ✓ MaxGraphSQL;n=65536 (1085978ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run17.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..c8361119a98b8647d69d4c3027d5e7738ebd9fa6 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (626ms) + ✓ MaxGraphSQL;n=32 (395ms) + ✓ MaxGraphSQL;n=64 (392ms) + ✓ MaxGraphSQL;n=128 (411ms) + ✓ MaxGraphSQL;n=256 (446ms) + ✓ MaxGraphSQL;n=512 (451ms) + ✓ MaxGraphSQL;n=1024 (615ms) + ✓ MaxGraphSQL;n=2048 (1285ms) + ✓ MaxGraphSQL;n=4096 (3510ms) + ✓ MaxGraphSQL;n=8192 (12527ms) + ✓ MaxGraphSQL;n=16384 (50178ms) + ✓ MaxGraphSQL;n=32768 (236560ms) + ✓ MaxGraphSQL;n=65536 (982053ms) + + + 13 passing (21m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run18.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..cd3b23358cc4c4307946244628b0df906f6174c7 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (674ms) + ✓ MaxGraphSQL;n=32 (439ms) + ✓ MaxGraphSQL;n=64 (407ms) + ✓ MaxGraphSQL;n=128 (437ms) + ✓ MaxGraphSQL;n=256 (480ms) + ✓ MaxGraphSQL;n=512 (527ms) + ✓ MaxGraphSQL;n=1024 (709ms) + ✓ MaxGraphSQL;n=2048 (1444ms) + ✓ MaxGraphSQL;n=4096 (3810ms) + ✓ MaxGraphSQL;n=8192 (13722ms) + ✓ MaxGraphSQL;n=16384 (58633ms) + ✓ MaxGraphSQL;n=32768 (240300ms) + ✓ MaxGraphSQL;n=65536 (1089324ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run19.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..9804ba95b4157d045ecd5a0d0114e2f769a063a3 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (730ms) + ✓ MaxGraphSQL;n=32 (508ms) + ✓ MaxGraphSQL;n=64 (477ms) + ✓ MaxGraphSQL;n=128 (497ms) + ✓ MaxGraphSQL;n=256 (496ms) + ✓ MaxGraphSQL;n=512 (547ms) + ✓ MaxGraphSQL;n=1024 (736ms) + ✓ MaxGraphSQL;n=2048 (1463ms) + ✓ MaxGraphSQL;n=4096 (3925ms) + ✓ MaxGraphSQL;n=8192 (13977ms) + ✓ MaxGraphSQL;n=16384 (59159ms) + ✓ MaxGraphSQL;n=32768 (226145ms) + ✓ MaxGraphSQL;n=65536 (1071770ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run2.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..3fc065261af627badf4348dddf0c06caf3cfc114 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (697ms) + ✓ MaxGraphSQL;n=32 (447ms) + ✓ MaxGraphSQL;n=64 (446ms) + ✓ MaxGraphSQL;n=128 (465ms) + ✓ MaxGraphSQL;n=256 (593ms) + ✓ MaxGraphSQL;n=512 (649ms) + ✓ MaxGraphSQL;n=1024 (826ms) + ✓ MaxGraphSQL;n=2048 (1590ms) + ✓ MaxGraphSQL;n=4096 (4060ms) + ✓ MaxGraphSQL;n=8192 (14423ms) + ✓ MaxGraphSQL;n=16384 (63221ms) + ✓ MaxGraphSQL;n=32768 (240861ms) + ✓ MaxGraphSQL;n=65536 (1052638ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run20.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..70f0a8cf978f53252ca17bfaea92b48a44b2f146 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (705ms) + ✓ MaxGraphSQL;n=32 (433ms) + ✓ MaxGraphSQL;n=64 (415ms) + ✓ MaxGraphSQL;n=128 (425ms) + ✓ MaxGraphSQL;n=256 (441ms) + ✓ MaxGraphSQL;n=512 (491ms) + ✓ MaxGraphSQL;n=1024 (679ms) + ✓ MaxGraphSQL;n=2048 (1415ms) + ✓ MaxGraphSQL;n=4096 (3828ms) + ✓ MaxGraphSQL;n=8192 (13602ms) + ✓ MaxGraphSQL;n=16384 (54442ms) + ✓ MaxGraphSQL;n=32768 (237245ms) + ✓ MaxGraphSQL;n=65536 (1051007ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run3.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..86cb9e51c47dcc614550b3e78cca892ec23014fb --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (747ms) + ✓ MaxGraphSQL;n=32 (450ms) + ✓ MaxGraphSQL;n=64 (433ms) + ✓ MaxGraphSQL;n=128 (456ms) + ✓ MaxGraphSQL;n=256 (457ms) + ✓ MaxGraphSQL;n=512 (520ms) + ✓ MaxGraphSQL;n=1024 (714ms) + ✓ MaxGraphSQL;n=2048 (1515ms) + ✓ MaxGraphSQL;n=4096 (4143ms) + ✓ MaxGraphSQL;n=8192 (14894ms) + ✓ MaxGraphSQL;n=16384 (60831ms) + ✓ MaxGraphSQL;n=32768 (255669ms) + ✓ MaxGraphSQL;n=65536 (1144491ms) + + + 13 passing (25m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run4.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..c85d0165580cd80844b39884d3bc33609562c148 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (718ms) + ✓ MaxGraphSQL;n=32 (432ms) + ✓ MaxGraphSQL;n=64 (419ms) + ✓ MaxGraphSQL;n=128 (449ms) + ✓ MaxGraphSQL;n=256 (486ms) + ✓ MaxGraphSQL;n=512 (536ms) + ✓ MaxGraphSQL;n=1024 (722ms) + ✓ MaxGraphSQL;n=2048 (1480ms) + ✓ MaxGraphSQL;n=4096 (3946ms) + ✓ MaxGraphSQL;n=8192 (14006ms) + ✓ MaxGraphSQL;n=16384 (58723ms) + ✓ MaxGraphSQL;n=32768 (247255ms) + ✓ MaxGraphSQL;n=65536 (1165783ms) + + + 13 passing (25m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run5.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..c56714cd3d974c1b6df1e7b60f313d089de26d6f --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (691ms) + ✓ MaxGraphSQL;n=32 (424ms) + ✓ MaxGraphSQL;n=64 (420ms) + ✓ MaxGraphSQL;n=128 (431ms) + ✓ MaxGraphSQL;n=256 (437ms) + ✓ MaxGraphSQL;n=512 (487ms) + ✓ MaxGraphSQL;n=1024 (679ms) + ✓ MaxGraphSQL;n=2048 (1521ms) + ✓ MaxGraphSQL;n=4096 (4052ms) + ✓ MaxGraphSQL;n=8192 (14376ms) + ✓ MaxGraphSQL;n=16384 (60480ms) + ✓ MaxGraphSQL;n=32768 (247338ms) + ✓ MaxGraphSQL;n=65536 (1091436ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run6.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..090b16d1dbcf773c75ceb29a22b0b6a0af328cec --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (693ms) + ✓ MaxGraphSQL;n=32 (454ms) + ✓ MaxGraphSQL;n=64 (423ms) + ✓ MaxGraphSQL;n=128 (450ms) + ✓ MaxGraphSQL;n=256 (454ms) + ✓ MaxGraphSQL;n=512 (514ms) + ✓ MaxGraphSQL;n=1024 (686ms) + ✓ MaxGraphSQL;n=2048 (1421ms) + ✓ MaxGraphSQL;n=4096 (3829ms) + ✓ MaxGraphSQL;n=8192 (14083ms) + ✓ MaxGraphSQL;n=16384 (58591ms) + ✓ MaxGraphSQL;n=32768 (233810ms) + ✓ MaxGraphSQL;n=65536 (1091070ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run7.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..59b48997b690eab87a5420e8e763f7c6027b2496 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (699ms) + ✓ MaxGraphSQL;n=32 (434ms) + ✓ MaxGraphSQL;n=64 (427ms) + ✓ MaxGraphSQL;n=128 (434ms) + ✓ MaxGraphSQL;n=256 (438ms) + ✓ MaxGraphSQL;n=512 (495ms) + ✓ MaxGraphSQL;n=1024 (667ms) + ✓ MaxGraphSQL;n=2048 (1369ms) + ✓ MaxGraphSQL;n=4096 (3692ms) + ✓ MaxGraphSQL;n=8192 (13095ms) + ✓ MaxGraphSQL;n=16384 (52180ms) + ✓ MaxGraphSQL;n=32768 (216730ms) + ✓ MaxGraphSQL;n=65536 (1046429ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run8.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..f4f8eec3ff6672fd0ea05ac55a203a2489d994f5 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (702ms) + ✓ MaxGraphSQL;n=32 (442ms) + ✓ MaxGraphSQL;n=64 (443ms) + ✓ MaxGraphSQL;n=128 (459ms) + ✓ MaxGraphSQL;n=256 (452ms) + ✓ MaxGraphSQL;n=512 (502ms) + ✓ MaxGraphSQL;n=1024 (687ms) + ✓ MaxGraphSQL;n=2048 (1420ms) + ✓ MaxGraphSQL;n=4096 (3849ms) + ✓ MaxGraphSQL;n=8192 (13670ms) + ✓ MaxGraphSQL;n=16384 (54688ms) + ✓ MaxGraphSQL;n=32768 (223459ms) + ✓ MaxGraphSQL;n=65536 (1103841ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run9.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..60f22d992fc107b9b0d118ba4891051eb0d8346e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear2/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (796ms) + ✓ MaxGraphSQL;n=32 (499ms) + ✓ MaxGraphSQL;n=64 (494ms) + ✓ MaxGraphSQL;n=128 (514ms) + ✓ MaxGraphSQL;n=256 (463ms) + ✓ MaxGraphSQL;n=512 (523ms) + ✓ MaxGraphSQL;n=1024 (711ms) + ✓ MaxGraphSQL;n=2048 (1413ms) + ✓ MaxGraphSQL;n=4096 (3774ms) + ✓ MaxGraphSQL;n=8192 (13390ms) + ✓ MaxGraphSQL;n=16384 (53782ms) + ✓ MaxGraphSQL;n=32768 (216374ms) + ✓ MaxGraphSQL;n=65536 (1035282ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run1.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..1caf228365433f5d0c059dbb6a5c965dd12c5866 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1097ms) + ✓ MaxGraphSQL;n=32 (769ms) + ✓ MaxGraphSQL;n=64 (758ms) + ✓ MaxGraphSQL;n=128 (758ms) + ✓ MaxGraphSQL;n=256 (771ms) + ✓ MaxGraphSQL;n=512 (783ms) + ✓ MaxGraphSQL;n=1024 (859ms) + ✓ MaxGraphSQL;n=2048 (1005ms) + ✓ MaxGraphSQL;n=4096 (1413ms) + ✓ MaxGraphSQL;n=8192 (2758ms) + ✓ MaxGraphSQL;n=16384 (7545ms) + ✓ MaxGraphSQL;n=32768 (27009ms) + ✓ MaxGraphSQL;n=65536 (113523ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run10.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..a2899dd2a0fcffcf59d40b2ec29bea0d4b907f15 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1090ms) + ✓ MaxGraphSQL;n=32 (800ms) + ✓ MaxGraphSQL;n=64 (791ms) + ✓ MaxGraphSQL;n=128 (796ms) + ✓ MaxGraphSQL;n=256 (811ms) + ✓ MaxGraphSQL;n=512 (840ms) + ✓ MaxGraphSQL;n=1024 (875ms) + ✓ MaxGraphSQL;n=2048 (993ms) + ✓ MaxGraphSQL;n=4096 (1406ms) + ✓ MaxGraphSQL;n=8192 (2721ms) + ✓ MaxGraphSQL;n=16384 (7345ms) + ✓ MaxGraphSQL;n=32768 (26384ms) + ✓ MaxGraphSQL;n=65536 (115450ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run11.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..622092623b3ab3b63c3e634c747c8335ebaf508f --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1200ms) + ✓ MaxGraphSQL;n=32 (791ms) + ✓ MaxGraphSQL;n=64 (801ms) + ✓ MaxGraphSQL;n=128 (835ms) + ✓ MaxGraphSQL;n=256 (826ms) + ✓ MaxGraphSQL;n=512 (849ms) + ✓ MaxGraphSQL;n=1024 (917ms) + ✓ MaxGraphSQL;n=2048 (1040ms) + ✓ MaxGraphSQL;n=4096 (1524ms) + ✓ MaxGraphSQL;n=8192 (2998ms) + ✓ MaxGraphSQL;n=16384 (8200ms) + ✓ MaxGraphSQL;n=32768 (30882ms) + ✓ MaxGraphSQL;n=65536 (131068ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run12.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..f2c90125654c05d4a2d970247979badf797b0660 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1086ms) + ✓ MaxGraphSQL;n=32 (776ms) + ✓ MaxGraphSQL;n=64 (763ms) + ✓ MaxGraphSQL;n=128 (772ms) + ✓ MaxGraphSQL;n=256 (785ms) + ✓ MaxGraphSQL;n=512 (849ms) + ✓ MaxGraphSQL;n=1024 (921ms) + ✓ MaxGraphSQL;n=2048 (1029ms) + ✓ MaxGraphSQL;n=4096 (1473ms) + ✓ MaxGraphSQL;n=8192 (2873ms) + ✓ MaxGraphSQL;n=16384 (7864ms) + ✓ MaxGraphSQL;n=32768 (29197ms) + ✓ MaxGraphSQL;n=65536 (128766ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run13.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..bbae6d4c4ecfebccb9bf2f51f145fdaa99677ed0 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1121ms) + ✓ MaxGraphSQL;n=32 (837ms) + ✓ MaxGraphSQL;n=64 (827ms) + ✓ MaxGraphSQL;n=128 (826ms) + ✓ MaxGraphSQL;n=256 (846ms) + ✓ MaxGraphSQL;n=512 (868ms) + ✓ MaxGraphSQL;n=1024 (925ms) + ✓ MaxGraphSQL;n=2048 (1056ms) + ✓ MaxGraphSQL;n=4096 (1487ms) + ✓ MaxGraphSQL;n=8192 (2920ms) + ✓ MaxGraphSQL;n=16384 (8019ms) + ✓ MaxGraphSQL;n=32768 (29526ms) + ✓ MaxGraphSQL;n=65536 (124484ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run14.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..32829a962abe31a211109b7b8abf42bbfd5f1211 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1109ms) + ✓ MaxGraphSQL;n=32 (770ms) + ✓ MaxGraphSQL;n=64 (761ms) + ✓ MaxGraphSQL;n=128 (764ms) + ✓ MaxGraphSQL;n=256 (767ms) + ✓ MaxGraphSQL;n=512 (783ms) + ✓ MaxGraphSQL;n=1024 (856ms) + ✓ MaxGraphSQL;n=2048 (989ms) + ✓ MaxGraphSQL;n=4096 (1412ms) + ✓ MaxGraphSQL;n=8192 (2770ms) + ✓ MaxGraphSQL;n=16384 (7564ms) + ✓ MaxGraphSQL;n=32768 (27924ms) + ✓ MaxGraphSQL;n=65536 (117124ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run15.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..47ee2df1e0a41f2c57fdb56289874a07ada3f842 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1335ms) + ✓ MaxGraphSQL;n=32 (842ms) + ✓ MaxGraphSQL;n=64 (840ms) + ✓ MaxGraphSQL;n=128 (848ms) + ✓ MaxGraphSQL;n=256 (853ms) + ✓ MaxGraphSQL;n=512 (867ms) + ✓ MaxGraphSQL;n=1024 (936ms) + ✓ MaxGraphSQL;n=2048 (1057ms) + ✓ MaxGraphSQL;n=4096 (1517ms) + ✓ MaxGraphSQL;n=8192 (2936ms) + ✓ MaxGraphSQL;n=16384 (8028ms) + ✓ MaxGraphSQL;n=32768 (31475ms) + ✓ MaxGraphSQL;n=65536 (132488ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run16.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..0f62a02a862fcf04519df6735af7979eefabcb60 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1141ms) + ✓ MaxGraphSQL;n=32 (757ms) + ✓ MaxGraphSQL;n=64 (762ms) + ✓ MaxGraphSQL;n=128 (763ms) + ✓ MaxGraphSQL;n=256 (791ms) + ✓ MaxGraphSQL;n=512 (934ms) + ✓ MaxGraphSQL;n=1024 (908ms) + ✓ MaxGraphSQL;n=2048 (1013ms) + ✓ MaxGraphSQL;n=4096 (1450ms) + ✓ MaxGraphSQL;n=8192 (2796ms) + ✓ MaxGraphSQL;n=16384 (7580ms) + ✓ MaxGraphSQL;n=32768 (27229ms) + ✓ MaxGraphSQL;n=65536 (116130ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run17.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..123621998afefa9ee739e7ad1f76315c4bd898fd --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1300ms) + ✓ MaxGraphSQL;n=32 (903ms) + ✓ MaxGraphSQL;n=64 (893ms) + ✓ MaxGraphSQL;n=128 (903ms) + ✓ MaxGraphSQL;n=256 (916ms) + ✓ MaxGraphSQL;n=512 (889ms) + ✓ MaxGraphSQL;n=1024 (973ms) + ✓ MaxGraphSQL;n=2048 (1147ms) + ✓ MaxGraphSQL;n=4096 (1580ms) + ✓ MaxGraphSQL;n=8192 (3033ms) + ✓ MaxGraphSQL;n=16384 (8185ms) + ✓ MaxGraphSQL;n=32768 (29988ms) + ✓ MaxGraphSQL;n=65536 (128313ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run18.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..b483b05d7c592938f270bc59fb612ea242ee9f0b --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1152ms) + ✓ MaxGraphSQL;n=32 (822ms) + ✓ MaxGraphSQL;n=64 (815ms) + ✓ MaxGraphSQL;n=128 (828ms) + ✓ MaxGraphSQL;n=256 (828ms) + ✓ MaxGraphSQL;n=512 (844ms) + ✓ MaxGraphSQL;n=1024 (908ms) + ✓ MaxGraphSQL;n=2048 (1028ms) + ✓ MaxGraphSQL;n=4096 (1461ms) + ✓ MaxGraphSQL;n=8192 (2884ms) + ✓ MaxGraphSQL;n=16384 (7858ms) + ✓ MaxGraphSQL;n=32768 (27601ms) + ✓ MaxGraphSQL;n=65536 (110435ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run19.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..de6ef10cc4e0a5c38856afee50bd9a7720c86a79 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1292ms) + ✓ MaxGraphSQL;n=32 (907ms) + ✓ MaxGraphSQL;n=64 (896ms) + ✓ MaxGraphSQL;n=128 (898ms) + ✓ MaxGraphSQL;n=256 (926ms) + ✓ MaxGraphSQL;n=512 (934ms) + ✓ MaxGraphSQL;n=1024 (987ms) + ✓ MaxGraphSQL;n=2048 (1137ms) + ✓ MaxGraphSQL;n=4096 (1559ms) + ✓ MaxGraphSQL;n=8192 (2934ms) + ✓ MaxGraphSQL;n=16384 (7756ms) + ✓ MaxGraphSQL;n=32768 (28610ms) + ✓ MaxGraphSQL;n=65536 (117168ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run2.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..b70988f622f6fd8375b2e2f5fa4be71cf0580365 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1307ms) + ✓ MaxGraphSQL;n=32 (868ms) + ✓ MaxGraphSQL;n=64 (856ms) + ✓ MaxGraphSQL;n=128 (872ms) + ✓ MaxGraphSQL;n=256 (853ms) + ✓ MaxGraphSQL;n=512 (833ms) + ✓ MaxGraphSQL;n=1024 (900ms) + ✓ MaxGraphSQL;n=2048 (1018ms) + ✓ MaxGraphSQL;n=4096 (1456ms) + ✓ MaxGraphSQL;n=8192 (2826ms) + ✓ MaxGraphSQL;n=16384 (7731ms) + ✓ MaxGraphSQL;n=32768 (27211ms) + ✓ MaxGraphSQL;n=65536 (111041ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run20.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..683e62816e15fb511507a89aae6abf01217cbfcd --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1100ms) + ✓ MaxGraphSQL;n=32 (770ms) + ✓ MaxGraphSQL;n=64 (757ms) + ✓ MaxGraphSQL;n=128 (756ms) + ✓ MaxGraphSQL;n=256 (776ms) + ✓ MaxGraphSQL;n=512 (795ms) + ✓ MaxGraphSQL;n=1024 (863ms) + ✓ MaxGraphSQL;n=2048 (1097ms) + ✓ MaxGraphSQL;n=4096 (1578ms) + ✓ MaxGraphSQL;n=8192 (3089ms) + ✓ MaxGraphSQL;n=16384 (8478ms) + ✓ MaxGraphSQL;n=32768 (32624ms) + ✓ MaxGraphSQL;n=65536 (138534ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run3.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..43c45dc3189fcf388d67f7ec3808ae59b48a0b9d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1361ms) + ✓ MaxGraphSQL;n=32 (896ms) + ✓ MaxGraphSQL;n=64 (875ms) + ✓ MaxGraphSQL;n=128 (879ms) + ✓ MaxGraphSQL;n=256 (889ms) + ✓ MaxGraphSQL;n=512 (899ms) + ✓ MaxGraphSQL;n=1024 (975ms) + ✓ MaxGraphSQL;n=2048 (1095ms) + ✓ MaxGraphSQL;n=4096 (1557ms) + ✓ MaxGraphSQL;n=8192 (3003ms) + ✓ MaxGraphSQL;n=16384 (8105ms) + ✓ MaxGraphSQL;n=32768 (29831ms) + ✓ MaxGraphSQL;n=65536 (129914ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run4.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..1262c7e5a027fa1b6c453f6ebbbdbcce8b4018a1 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1144ms) + ✓ MaxGraphSQL;n=32 (819ms) + ✓ MaxGraphSQL;n=64 (807ms) + ✓ MaxGraphSQL;n=128 (822ms) + ✓ MaxGraphSQL;n=256 (818ms) + ✓ MaxGraphSQL;n=512 (838ms) + ✓ MaxGraphSQL;n=1024 (914ms) + ✓ MaxGraphSQL;n=2048 (1033ms) + ✓ MaxGraphSQL;n=4096 (1454ms) + ✓ MaxGraphSQL;n=8192 (2880ms) + ✓ MaxGraphSQL;n=16384 (7771ms) + ✓ MaxGraphSQL;n=32768 (29522ms) + ✓ MaxGraphSQL;n=65536 (127696ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run5.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..ffd9477cb8de90be82a5fe674a331ea5b9fb7e72 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1263ms) + ✓ MaxGraphSQL;n=32 (871ms) + ✓ MaxGraphSQL;n=64 (857ms) + ✓ MaxGraphSQL;n=128 (862ms) + ✓ MaxGraphSQL;n=256 (885ms) + ✓ MaxGraphSQL;n=512 (903ms) + ✓ MaxGraphSQL;n=1024 (949ms) + ✓ MaxGraphSQL;n=2048 (1101ms) + ✓ MaxGraphSQL;n=4096 (1572ms) + ✓ MaxGraphSQL;n=8192 (3107ms) + ✓ MaxGraphSQL;n=16384 (8475ms) + ✓ MaxGraphSQL;n=32768 (32491ms) + ✓ MaxGraphSQL;n=65536 (134850ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run6.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..df0d11c8d1ce7ae6837cf9d4f55636d55fc3bedb --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1212ms) + ✓ MaxGraphSQL;n=32 (798ms) + ✓ MaxGraphSQL;n=64 (790ms) + ✓ MaxGraphSQL;n=128 (784ms) + ✓ MaxGraphSQL;n=256 (801ms) + ✓ MaxGraphSQL;n=512 (817ms) + ✓ MaxGraphSQL;n=1024 (885ms) + ✓ MaxGraphSQL;n=2048 (1020ms) + ✓ MaxGraphSQL;n=4096 (1466ms) + ✓ MaxGraphSQL;n=8192 (2912ms) + ✓ MaxGraphSQL;n=16384 (7968ms) + ✓ MaxGraphSQL;n=32768 (28185ms) + ✓ MaxGraphSQL;n=65536 (113470ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run7.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..25d5f848be0581fe9c17bfe681af3b7161fd25fb --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1341ms) + ✓ MaxGraphSQL;n=32 (854ms) + ✓ MaxGraphSQL;n=64 (845ms) + ✓ MaxGraphSQL;n=128 (844ms) + ✓ MaxGraphSQL;n=256 (854ms) + ✓ MaxGraphSQL;n=512 (879ms) + ✓ MaxGraphSQL;n=1024 (942ms) + ✓ MaxGraphSQL;n=2048 (1069ms) + ✓ MaxGraphSQL;n=4096 (1539ms) + ✓ MaxGraphSQL;n=8192 (2998ms) + ✓ MaxGraphSQL;n=16384 (8127ms) + ✓ MaxGraphSQL;n=32768 (30591ms) + ✓ MaxGraphSQL;n=65536 (132945ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run8.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..470759644306e9fe1d380ea86b6964dbc26bfb4b --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1128ms) + ✓ MaxGraphSQL;n=32 (745ms) + ✓ MaxGraphSQL;n=64 (741ms) + ✓ MaxGraphSQL;n=128 (740ms) + ✓ MaxGraphSQL;n=256 (748ms) + ✓ MaxGraphSQL;n=512 (766ms) + ✓ MaxGraphSQL;n=1024 (833ms) + ✓ MaxGraphSQL;n=2048 (962ms) + ✓ MaxGraphSQL;n=4096 (1364ms) + ✓ MaxGraphSQL;n=8192 (2739ms) + ✓ MaxGraphSQL;n=16384 (7566ms) + ✓ MaxGraphSQL;n=32768 (26946ms) + ✓ MaxGraphSQL;n=65536 (108497ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run9.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..5f56610044dd21eb550e507b675f659287ad08d5 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear4/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1122ms) + ✓ MaxGraphSQL;n=32 (780ms) + ✓ MaxGraphSQL;n=64 (773ms) + ✓ MaxGraphSQL;n=128 (769ms) + ✓ MaxGraphSQL;n=256 (795ms) + ✓ MaxGraphSQL;n=512 (804ms) + ✓ MaxGraphSQL;n=1024 (868ms) + ✓ MaxGraphSQL;n=2048 (989ms) + ✓ MaxGraphSQL;n=4096 (1423ms) + ✓ MaxGraphSQL;n=8192 (2825ms) + ✓ MaxGraphSQL;n=16384 (7772ms) + ✓ MaxGraphSQL;n=32768 (27849ms) + ✓ MaxGraphSQL;n=65536 (110086ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run1.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..1f2076dea4460859c7b3b2f7db98729e44896b90 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1918ms) + ✓ MaxGraphSQL;n=32 (1465ms) + ✓ MaxGraphSQL;n=64 (1452ms) + ✓ MaxGraphSQL;n=128 (1472ms) + ✓ MaxGraphSQL;n=256 (1645ms) + ✓ MaxGraphSQL;n=512 (1630ms) + ✓ MaxGraphSQL;n=1024 (1619ms) + ✓ MaxGraphSQL;n=2048 (1659ms) + ✓ MaxGraphSQL;n=4096 (1804ms) + ✓ MaxGraphSQL;n=8192 (2167ms) + ✓ MaxGraphSQL;n=16384 (3422ms) + ✓ MaxGraphSQL;n=32768 (7437ms) + ✓ MaxGraphSQL;n=65536 (25828ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run10.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..9ae204905abab907f2cecb9e3923413f213a2cf7 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2191ms) + ✓ MaxGraphSQL;n=32 (1670ms) + ✓ MaxGraphSQL;n=64 (1662ms) + ✓ MaxGraphSQL;n=128 (1676ms) + ✓ MaxGraphSQL;n=256 (1681ms) + ✓ MaxGraphSQL;n=512 (1680ms) + ✓ MaxGraphSQL;n=1024 (1701ms) + ✓ MaxGraphSQL;n=2048 (1764ms) + ✓ MaxGraphSQL;n=4096 (1885ms) + ✓ MaxGraphSQL;n=8192 (2250ms) + ✓ MaxGraphSQL;n=16384 (3413ms) + ✓ MaxGraphSQL;n=32768 (7143ms) + ✓ MaxGraphSQL;n=65536 (24764ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run11.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..213b6c1723dc0864c8c3a7617f7390a64d3a630c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2109ms) + ✓ MaxGraphSQL;n=32 (1556ms) + ✓ MaxGraphSQL;n=64 (1538ms) + ✓ MaxGraphSQL;n=128 (1542ms) + ✓ MaxGraphSQL;n=256 (1546ms) + ✓ MaxGraphSQL;n=512 (1549ms) + ✓ MaxGraphSQL;n=1024 (1572ms) + ✓ MaxGraphSQL;n=2048 (1642ms) + ✓ MaxGraphSQL;n=4096 (1761ms) + ✓ MaxGraphSQL;n=8192 (2136ms) + ✓ MaxGraphSQL;n=16384 (3369ms) + ✓ MaxGraphSQL;n=32768 (7328ms) + ✓ MaxGraphSQL;n=65536 (24830ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run12.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..a78d4fed65707219191aed5d656c4c7c41734d36 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2101ms) + ✓ MaxGraphSQL;n=32 (1558ms) + ✓ MaxGraphSQL;n=64 (1545ms) + ✓ MaxGraphSQL;n=128 (1554ms) + ✓ MaxGraphSQL;n=256 (1555ms) + ✓ MaxGraphSQL;n=512 (1562ms) + ✓ MaxGraphSQL;n=1024 (1618ms) + ✓ MaxGraphSQL;n=2048 (1706ms) + ✓ MaxGraphSQL;n=4096 (1833ms) + ✓ MaxGraphSQL;n=8192 (2155ms) + ✓ MaxGraphSQL;n=16384 (3462ms) + ✓ MaxGraphSQL;n=32768 (7566ms) + ✓ MaxGraphSQL;n=65536 (27310ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run13.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..c2287a477b6a3a329d96a49e10e88b1c536fbb86 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1957ms) + ✓ MaxGraphSQL;n=32 (1501ms) + ✓ MaxGraphSQL;n=64 (1479ms) + ✓ MaxGraphSQL;n=128 (1478ms) + ✓ MaxGraphSQL;n=256 (1489ms) + ✓ MaxGraphSQL;n=512 (1490ms) + ✓ MaxGraphSQL;n=1024 (1514ms) + ✓ MaxGraphSQL;n=2048 (1583ms) + ✓ MaxGraphSQL;n=4096 (1691ms) + ✓ MaxGraphSQL;n=8192 (2055ms) + ✓ MaxGraphSQL;n=16384 (3223ms) + ✓ MaxGraphSQL;n=32768 (7025ms) + ✓ MaxGraphSQL;n=65536 (24179ms) + + + 13 passing (51s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run14.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..3acd32e0dad3c9ba3d00a065850d90055dbe00b9 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2097ms) + ✓ MaxGraphSQL;n=32 (1541ms) + ✓ MaxGraphSQL;n=64 (1576ms) + ✓ MaxGraphSQL;n=128 (1584ms) + ✓ MaxGraphSQL;n=256 (1583ms) + ✓ MaxGraphSQL;n=512 (1609ms) + ✓ MaxGraphSQL;n=1024 (1622ms) + ✓ MaxGraphSQL;n=2048 (1698ms) + ✓ MaxGraphSQL;n=4096 (1814ms) + ✓ MaxGraphSQL;n=8192 (2198ms) + ✓ MaxGraphSQL;n=16384 (3441ms) + ✓ MaxGraphSQL;n=32768 (7443ms) + ✓ MaxGraphSQL;n=65536 (26233ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run15.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..93590057d05623fa3a333f35639e5a11f6eddf5e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2201ms) + ✓ MaxGraphSQL;n=32 (1725ms) + ✓ MaxGraphSQL;n=64 (1702ms) + ✓ MaxGraphSQL;n=128 (1696ms) + ✓ MaxGraphSQL;n=256 (1715ms) + ✓ MaxGraphSQL;n=512 (1816ms) + ✓ MaxGraphSQL;n=1024 (1849ms) + ✓ MaxGraphSQL;n=2048 (1916ms) + ✓ MaxGraphSQL;n=4096 (2043ms) + ✓ MaxGraphSQL;n=8192 (2430ms) + ✓ MaxGraphSQL;n=16384 (3737ms) + ✓ MaxGraphSQL;n=32768 (7929ms) + ✓ MaxGraphSQL;n=65536 (26906ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run16.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..d7d4b8df6165f55c22232b68c934a593d19b217e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2135ms) + ✓ MaxGraphSQL;n=32 (1562ms) + ✓ MaxGraphSQL;n=64 (1561ms) + ✓ MaxGraphSQL;n=128 (1566ms) + ✓ MaxGraphSQL;n=256 (1572ms) + ✓ MaxGraphSQL;n=512 (1580ms) + ✓ MaxGraphSQL;n=1024 (1596ms) + ✓ MaxGraphSQL;n=2048 (1658ms) + ✓ MaxGraphSQL;n=4096 (1801ms) + ✓ MaxGraphSQL;n=8192 (2180ms) + ✓ MaxGraphSQL;n=16384 (3472ms) + ✓ MaxGraphSQL;n=32768 (7488ms) + ✓ MaxGraphSQL;n=65536 (26435ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run17.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..e9d9822d05324cd1ad991099857566b771194841 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2165ms) + ✓ MaxGraphSQL;n=32 (1635ms) + ✓ MaxGraphSQL;n=64 (1622ms) + ✓ MaxGraphSQL;n=128 (1629ms) + ✓ MaxGraphSQL;n=256 (1639ms) + ✓ MaxGraphSQL;n=512 (1647ms) + ✓ MaxGraphSQL;n=1024 (1666ms) + ✓ MaxGraphSQL;n=2048 (1727ms) + ✓ MaxGraphSQL;n=4096 (1852ms) + ✓ MaxGraphSQL;n=8192 (2210ms) + ✓ MaxGraphSQL;n=16384 (3447ms) + ✓ MaxGraphSQL;n=32768 (7305ms) + ✓ MaxGraphSQL;n=65536 (24555ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run18.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..33f6778a77cae818604b85b0ec9d8273d1fee25e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2066ms) + ✓ MaxGraphSQL;n=32 (1577ms) + ✓ MaxGraphSQL;n=64 (1560ms) + ✓ MaxGraphSQL;n=128 (1577ms) + ✓ MaxGraphSQL;n=256 (1584ms) + ✓ MaxGraphSQL;n=512 (1588ms) + ✓ MaxGraphSQL;n=1024 (1594ms) + ✓ MaxGraphSQL;n=2048 (1673ms) + ✓ MaxGraphSQL;n=4096 (1778ms) + ✓ MaxGraphSQL;n=8192 (2156ms) + ✓ MaxGraphSQL;n=16384 (3380ms) + ✓ MaxGraphSQL;n=32768 (7200ms) + ✓ MaxGraphSQL;n=65536 (25055ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run19.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..8a28d798f1a6d0ce68bfe853f51d15e06bcbe3fc --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2087ms) + ✓ MaxGraphSQL;n=32 (1601ms) + ✓ MaxGraphSQL;n=64 (1597ms) + ✓ MaxGraphSQL;n=128 (1598ms) + ✓ MaxGraphSQL;n=256 (1606ms) + ✓ MaxGraphSQL;n=512 (1620ms) + ✓ MaxGraphSQL;n=1024 (1767ms) + ✓ MaxGraphSQL;n=2048 (1820ms) + ✓ MaxGraphSQL;n=4096 (1881ms) + ✓ MaxGraphSQL;n=8192 (2259ms) + ✓ MaxGraphSQL;n=16384 (3385ms) + ✓ MaxGraphSQL;n=32768 (7242ms) + ✓ MaxGraphSQL;n=65536 (26248ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run2.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..cefde11368126c32a60362766e8846a099686d5d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2041ms) + ✓ MaxGraphSQL;n=32 (1546ms) + ✓ MaxGraphSQL;n=64 (1529ms) + ✓ MaxGraphSQL;n=128 (1538ms) + ✓ MaxGraphSQL;n=256 (1546ms) + ✓ MaxGraphSQL;n=512 (1542ms) + ✓ MaxGraphSQL;n=1024 (1582ms) + ✓ MaxGraphSQL;n=2048 (1616ms) + ✓ MaxGraphSQL;n=4096 (1754ms) + ✓ MaxGraphSQL;n=8192 (2146ms) + ✓ MaxGraphSQL;n=16384 (3243ms) + ✓ MaxGraphSQL;n=32768 (7192ms) + ✓ MaxGraphSQL;n=65536 (24384ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run20.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..e6ca3a6f0b61ad97b09a7753ef1f4a6eec758ce1 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2266ms) + ✓ MaxGraphSQL;n=32 (1689ms) + ✓ MaxGraphSQL;n=64 (1671ms) + ✓ MaxGraphSQL;n=128 (1682ms) + ✓ MaxGraphSQL;n=256 (1699ms) + ✓ MaxGraphSQL;n=512 (1699ms) + ✓ MaxGraphSQL;n=1024 (1715ms) + ✓ MaxGraphSQL;n=2048 (1795ms) + ✓ MaxGraphSQL;n=4096 (1910ms) + ✓ MaxGraphSQL;n=8192 (2303ms) + ✓ MaxGraphSQL;n=16384 (3584ms) + ✓ MaxGraphSQL;n=32768 (7648ms) + ✓ MaxGraphSQL;n=65536 (26562ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run3.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..53f764ea12669724a79786aa6eec209806cb88ab --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2401ms) + ✓ MaxGraphSQL;n=32 (1818ms) + ✓ MaxGraphSQL;n=64 (1815ms) + ✓ MaxGraphSQL;n=128 (1814ms) + ✓ MaxGraphSQL;n=256 (1825ms) + ✓ MaxGraphSQL;n=512 (1832ms) + ✓ MaxGraphSQL;n=1024 (1855ms) + ✓ MaxGraphSQL;n=2048 (1923ms) + ✓ MaxGraphSQL;n=4096 (2050ms) + ✓ MaxGraphSQL;n=8192 (2376ms) + ✓ MaxGraphSQL;n=16384 (3604ms) + ✓ MaxGraphSQL;n=32768 (7399ms) + ✓ MaxGraphSQL;n=65536 (24880ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run4.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..ac12d165c2246aa0752564325ab3aeb11129b193 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2082ms) + ✓ MaxGraphSQL;n=32 (1520ms) + ✓ MaxGraphSQL;n=64 (1522ms) + ✓ MaxGraphSQL;n=128 (1525ms) + ✓ MaxGraphSQL;n=256 (1519ms) + ✓ MaxGraphSQL;n=512 (1593ms) + ✓ MaxGraphSQL;n=1024 (1535ms) + ✓ MaxGraphSQL;n=2048 (1624ms) + ✓ MaxGraphSQL;n=4096 (1777ms) + ✓ MaxGraphSQL;n=8192 (2099ms) + ✓ MaxGraphSQL;n=16384 (3314ms) + ✓ MaxGraphSQL;n=32768 (7187ms) + ✓ MaxGraphSQL;n=65536 (24359ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run5.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..c1edc11580b6c0bdfd7da5ae5ff6a7bf54394044 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2158ms) + ✓ MaxGraphSQL;n=32 (1595ms) + ✓ MaxGraphSQL;n=64 (1585ms) + ✓ MaxGraphSQL;n=128 (1583ms) + ✓ MaxGraphSQL;n=256 (1604ms) + ✓ MaxGraphSQL;n=512 (1674ms) + ✓ MaxGraphSQL;n=1024 (1682ms) + ✓ MaxGraphSQL;n=2048 (1755ms) + ✓ MaxGraphSQL;n=4096 (1881ms) + ✓ MaxGraphSQL;n=8192 (2268ms) + ✓ MaxGraphSQL;n=16384 (3552ms) + ✓ MaxGraphSQL;n=32768 (7660ms) + ✓ MaxGraphSQL;n=65536 (26677ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run6.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..09a8117fe3614acf3b3613b11cdef14a67ec4a88 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2185ms) + ✓ MaxGraphSQL;n=32 (1624ms) + ✓ MaxGraphSQL;n=64 (1621ms) + ✓ MaxGraphSQL;n=128 (1620ms) + ✓ MaxGraphSQL;n=256 (1633ms) + ✓ MaxGraphSQL;n=512 (1641ms) + ✓ MaxGraphSQL;n=1024 (1657ms) + ✓ MaxGraphSQL;n=2048 (1742ms) + ✓ MaxGraphSQL;n=4096 (1920ms) + ✓ MaxGraphSQL;n=8192 (2306ms) + ✓ MaxGraphSQL;n=16384 (3739ms) + ✓ MaxGraphSQL;n=32768 (8211ms) + ✓ MaxGraphSQL;n=65536 (28335ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run7.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..404896a6f9bc02f6d1b5e42729c47fea7f7487ea --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2100ms) + ✓ MaxGraphSQL;n=32 (1515ms) + ✓ MaxGraphSQL;n=64 (1539ms) + ✓ MaxGraphSQL;n=128 (1515ms) + ✓ MaxGraphSQL;n=256 (1523ms) + ✓ MaxGraphSQL;n=512 (1532ms) + ✓ MaxGraphSQL;n=1024 (1567ms) + ✓ MaxGraphSQL;n=2048 (1604ms) + ✓ MaxGraphSQL;n=4096 (1743ms) + ✓ MaxGraphSQL;n=8192 (2116ms) + ✓ MaxGraphSQL;n=16384 (3355ms) + ✓ MaxGraphSQL;n=32768 (7324ms) + ✓ MaxGraphSQL;n=65536 (25737ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run8.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..c685b753ee9289857aba4ddca7caf145d8f5fb41 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2197ms) + ✓ MaxGraphSQL;n=32 (1659ms) + ✓ MaxGraphSQL;n=64 (1660ms) + ✓ MaxGraphSQL;n=128 (1670ms) + ✓ MaxGraphSQL;n=256 (1736ms) + ✓ MaxGraphSQL;n=512 (1759ms) + ✓ MaxGraphSQL;n=1024 (1779ms) + ✓ MaxGraphSQL;n=2048 (1843ms) + ✓ MaxGraphSQL;n=4096 (1970ms) + ✓ MaxGraphSQL;n=8192 (2340ms) + ✓ MaxGraphSQL;n=16384 (3544ms) + ✓ MaxGraphSQL;n=32768 (7350ms) + ✓ MaxGraphSQL;n=65536 (25374ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run9.test b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..b8b7219a2226f02d9d93798cf1155d12b8838407 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-10/linear8/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1983ms) + ✓ MaxGraphSQL;n=32 (1530ms) + ✓ MaxGraphSQL;n=64 (1481ms) + ✓ MaxGraphSQL;n=128 (1476ms) + ✓ MaxGraphSQL;n=256 (1479ms) + ✓ MaxGraphSQL;n=512 (1490ms) + ✓ MaxGraphSQL;n=1024 (1527ms) + ✓ MaxGraphSQL;n=2048 (1557ms) + ✓ MaxGraphSQL;n=4096 (1681ms) + ✓ MaxGraphSQL;n=8192 (2030ms) + ✓ MaxGraphSQL;n=16384 (3210ms) + ✓ MaxGraphSQL;n=32768 (6934ms) + ✓ MaxGraphSQL;n=65536 (23278ms) + + + 13 passing (50s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run1.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..4eb481539eaddf602a8a7b22cb6e363e5ab4944b --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (715ms) + ✓ MaxGraphSQL;n=32 (485ms) + ✓ MaxGraphSQL;n=64 (453ms) + ✓ MaxGraphSQL;n=128 (485ms) + ✓ MaxGraphSQL;n=256 (508ms) + ✓ MaxGraphSQL;n=512 (559ms) + ✓ MaxGraphSQL;n=1024 (751ms) + ✓ MaxGraphSQL;n=2048 (1538ms) + ✓ MaxGraphSQL;n=4096 (4075ms) + ✓ MaxGraphSQL;n=8192 (14496ms) + ✓ MaxGraphSQL;n=16384 (59547ms) + ✓ MaxGraphSQL;n=32768 (254224ms) + ✓ MaxGraphSQL;n=65536 (1098776ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run10.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..052828ee9b6bd6c6b61a03c73abcf6425b77e26f --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (707ms) + ✓ MaxGraphSQL;n=32 (446ms) + ✓ MaxGraphSQL;n=64 (438ms) + ✓ MaxGraphSQL;n=128 (461ms) + ✓ MaxGraphSQL;n=256 (489ms) + ✓ MaxGraphSQL;n=512 (545ms) + ✓ MaxGraphSQL;n=1024 (728ms) + ✓ MaxGraphSQL;n=2048 (1471ms) + ✓ MaxGraphSQL;n=4096 (3928ms) + ✓ MaxGraphSQL;n=8192 (13836ms) + ✓ MaxGraphSQL;n=16384 (55061ms) + ✓ MaxGraphSQL;n=32768 (244144ms) + ✓ MaxGraphSQL;n=65536 (1102243ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run11.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..9ad03853bee9df403605c3a9281a242511d59090 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (780ms) + ✓ MaxGraphSQL;n=32 (481ms) + ✓ MaxGraphSQL;n=64 (466ms) + ✓ MaxGraphSQL;n=128 (480ms) + ✓ MaxGraphSQL;n=256 (492ms) + ✓ MaxGraphSQL;n=512 (538ms) + ✓ MaxGraphSQL;n=1024 (731ms) + ✓ MaxGraphSQL;n=2048 (1502ms) + ✓ MaxGraphSQL;n=4096 (4066ms) + ✓ MaxGraphSQL;n=8192 (14629ms) + ✓ MaxGraphSQL;n=16384 (60877ms) + ✓ MaxGraphSQL;n=32768 (269931ms) + ✓ MaxGraphSQL;n=65536 (1106167ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run12.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..2ba31d00ae683ffbdaed16baaae8f8c14b7c2f80 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (729ms) + ✓ MaxGraphSQL;n=32 (470ms) + ✓ MaxGraphSQL;n=64 (457ms) + ✓ MaxGraphSQL;n=128 (471ms) + ✓ MaxGraphSQL;n=256 (477ms) + ✓ MaxGraphSQL;n=512 (530ms) + ✓ MaxGraphSQL;n=1024 (705ms) + ✓ MaxGraphSQL;n=2048 (1401ms) + ✓ MaxGraphSQL;n=4096 (3698ms) + ✓ MaxGraphSQL;n=8192 (13149ms) + ✓ MaxGraphSQL;n=16384 (55914ms) + ✓ MaxGraphSQL;n=32768 (235976ms) + ✓ MaxGraphSQL;n=65536 (1096264ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run13.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..690b9a873f2dacb2d5a9ec0a39a0c261c2b94352 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (729ms) + ✓ MaxGraphSQL;n=32 (449ms) + ✓ MaxGraphSQL;n=64 (440ms) + ✓ MaxGraphSQL;n=128 (457ms) + ✓ MaxGraphSQL;n=256 (463ms) + ✓ MaxGraphSQL;n=512 (517ms) + ✓ MaxGraphSQL;n=1024 (689ms) + ✓ MaxGraphSQL;n=2048 (1405ms) + ✓ MaxGraphSQL;n=4096 (3772ms) + ✓ MaxGraphSQL;n=8192 (13354ms) + ✓ MaxGraphSQL;n=16384 (52721ms) + ✓ MaxGraphSQL;n=32768 (244779ms) + ✓ MaxGraphSQL;n=65536 (1083681ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run14.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..cba2eb968c27be93ee9d6a92ad598113fbe1e747 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (732ms) + ✓ MaxGraphSQL;n=32 (436ms) + ✓ MaxGraphSQL;n=64 (419ms) + ✓ MaxGraphSQL;n=128 (448ms) + ✓ MaxGraphSQL;n=256 (479ms) + ✓ MaxGraphSQL;n=512 (538ms) + ✓ MaxGraphSQL;n=1024 (723ms) + ✓ MaxGraphSQL;n=2048 (1503ms) + ✓ MaxGraphSQL;n=4096 (4040ms) + ✓ MaxGraphSQL;n=8192 (14352ms) + ✓ MaxGraphSQL;n=16384 (57997ms) + ✓ MaxGraphSQL;n=32768 (259846ms) + ✓ MaxGraphSQL;n=65536 (1081550ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run15.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..d6bd98fc809cd985d5f26353596cb16d395eb6e9 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (725ms) + ✓ MaxGraphSQL;n=32 (432ms) + ✓ MaxGraphSQL;n=64 (420ms) + ✓ MaxGraphSQL;n=128 (445ms) + ✓ MaxGraphSQL;n=256 (487ms) + ✓ MaxGraphSQL;n=512 (543ms) + ✓ MaxGraphSQL;n=1024 (734ms) + ✓ MaxGraphSQL;n=2048 (1515ms) + ✓ MaxGraphSQL;n=4096 (4038ms) + ✓ MaxGraphSQL;n=8192 (14551ms) + ✓ MaxGraphSQL;n=16384 (60298ms) + ✓ MaxGraphSQL;n=32768 (250474ms) + ✓ MaxGraphSQL;n=65536 (1098888ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run16.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..9aa228b66e4b82cbf6df9fd1b8c7815ae34cb740 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (646ms) + ✓ MaxGraphSQL;n=32 (396ms) + ✓ MaxGraphSQL;n=64 (392ms) + ✓ MaxGraphSQL;n=128 (410ms) + ✓ MaxGraphSQL;n=256 (413ms) + ✓ MaxGraphSQL;n=512 (459ms) + ✓ MaxGraphSQL;n=1024 (630ms) + ✓ MaxGraphSQL;n=2048 (1320ms) + ✓ MaxGraphSQL;n=4096 (3611ms) + ✓ MaxGraphSQL;n=8192 (12898ms) + ✓ MaxGraphSQL;n=16384 (52432ms) + ✓ MaxGraphSQL;n=32768 (212067ms) + ✓ MaxGraphSQL;n=65536 (1191103ms) + + + 13 passing (25m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run17.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..c3fb2542eaab041b625ebc2269c2f75a0bc71073 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (686ms) + ✓ MaxGraphSQL;n=32 (433ms) + ✓ MaxGraphSQL;n=64 (420ms) + ✓ MaxGraphSQL;n=128 (443ms) + ✓ MaxGraphSQL;n=256 (447ms) + ✓ MaxGraphSQL;n=512 (501ms) + ✓ MaxGraphSQL;n=1024 (675ms) + ✓ MaxGraphSQL;n=2048 (1392ms) + ✓ MaxGraphSQL;n=4096 (3734ms) + ✓ MaxGraphSQL;n=8192 (13357ms) + ✓ MaxGraphSQL;n=16384 (56595ms) + ✓ MaxGraphSQL;n=32768 (247519ms) + ✓ MaxGraphSQL;n=65536 (1030991ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run18.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..95b14f212f865b19991d56eff8611cce150e34cb --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (691ms) + ✓ MaxGraphSQL;n=32 (423ms) + ✓ MaxGraphSQL;n=64 (418ms) + ✓ MaxGraphSQL;n=128 (428ms) + ✓ MaxGraphSQL;n=256 (434ms) + ✓ MaxGraphSQL;n=512 (482ms) + ✓ MaxGraphSQL;n=1024 (649ms) + ✓ MaxGraphSQL;n=2048 (1336ms) + ✓ MaxGraphSQL;n=4096 (3644ms) + ✓ MaxGraphSQL;n=8192 (12846ms) + ✓ MaxGraphSQL;n=16384 (51618ms) + ✓ MaxGraphSQL;n=32768 (210930ms) + ✓ MaxGraphSQL;n=65536 (1105551ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run19.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..bad7e99fa043fdb4ee155f8f39df75791acede8d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (719ms) + ✓ MaxGraphSQL;n=32 (468ms) + ✓ MaxGraphSQL;n=64 (438ms) + ✓ MaxGraphSQL;n=128 (448ms) + ✓ MaxGraphSQL;n=256 (462ms) + ✓ MaxGraphSQL;n=512 (514ms) + ✓ MaxGraphSQL;n=1024 (695ms) + ✓ MaxGraphSQL;n=2048 (1473ms) + ✓ MaxGraphSQL;n=4096 (3972ms) + ✓ MaxGraphSQL;n=8192 (14221ms) + ✓ MaxGraphSQL;n=16384 (57456ms) + ✓ MaxGraphSQL;n=32768 (250595ms) + ✓ MaxGraphSQL;n=65536 (1106977ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run2.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..f49d3a009dcd4070bc05194140de23bf97fff498 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (696ms) + ✓ MaxGraphSQL;n=32 (437ms) + ✓ MaxGraphSQL;n=64 (428ms) + ✓ MaxGraphSQL;n=128 (448ms) + ✓ MaxGraphSQL;n=256 (467ms) + ✓ MaxGraphSQL;n=512 (513ms) + ✓ MaxGraphSQL;n=1024 (685ms) + ✓ MaxGraphSQL;n=2048 (1379ms) + ✓ MaxGraphSQL;n=4096 (3688ms) + ✓ MaxGraphSQL;n=8192 (12942ms) + ✓ MaxGraphSQL;n=16384 (51869ms) + ✓ MaxGraphSQL;n=32768 (212928ms) + ✓ MaxGraphSQL;n=65536 (1043571ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run20.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..54e686acbbf768a616eb55e94a272b1033b93b44 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (666ms) + ✓ MaxGraphSQL;n=32 (412ms) + ✓ MaxGraphSQL;n=64 (402ms) + ✓ MaxGraphSQL;n=128 (413ms) + ✓ MaxGraphSQL;n=256 (421ms) + ✓ MaxGraphSQL;n=512 (471ms) + ✓ MaxGraphSQL;n=1024 (646ms) + ✓ MaxGraphSQL;n=2048 (1359ms) + ✓ MaxGraphSQL;n=4096 (3711ms) + ✓ MaxGraphSQL;n=8192 (13275ms) + ✓ MaxGraphSQL;n=16384 (52512ms) + ✓ MaxGraphSQL;n=32768 (256153ms) + ✓ MaxGraphSQL;n=65536 (1126427ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run3.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..95bdd9def95c0f55fbc1c426c38b3ff03cb7f1a6 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (704ms) + ✓ MaxGraphSQL;n=32 (423ms) + ✓ MaxGraphSQL;n=64 (413ms) + ✓ MaxGraphSQL;n=128 (432ms) + ✓ MaxGraphSQL;n=256 (442ms) + ✓ MaxGraphSQL;n=512 (486ms) + ✓ MaxGraphSQL;n=1024 (669ms) + ✓ MaxGraphSQL;n=2048 (1410ms) + ✓ MaxGraphSQL;n=4096 (3872ms) + ✓ MaxGraphSQL;n=8192 (13795ms) + ✓ MaxGraphSQL;n=16384 (54877ms) + ✓ MaxGraphSQL;n=32768 (223268ms) + ✓ MaxGraphSQL;n=65536 (962454ms) + + + 13 passing (21m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run4.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..5efde09d6ed0d7237a3bf8bbb26d0ad29ebfcf0c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (714ms) + ✓ MaxGraphSQL;n=32 (436ms) + ✓ MaxGraphSQL;n=64 (425ms) + ✓ MaxGraphSQL;n=128 (443ms) + ✓ MaxGraphSQL;n=256 (447ms) + ✓ MaxGraphSQL;n=512 (495ms) + ✓ MaxGraphSQL;n=1024 (671ms) + ✓ MaxGraphSQL;n=2048 (1401ms) + ✓ MaxGraphSQL;n=4096 (3775ms) + ✓ MaxGraphSQL;n=8192 (13378ms) + ✓ MaxGraphSQL;n=16384 (53094ms) + ✓ MaxGraphSQL;n=32768 (216890ms) + ✓ MaxGraphSQL;n=65536 (1112706ms) + + + 13 passing (23m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run5.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..732a2aba884b2991c8fd1c73532eaf28c0ea02c8 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (761ms) + ✓ MaxGraphSQL;n=32 (466ms) + ✓ MaxGraphSQL;n=64 (455ms) + ✓ MaxGraphSQL;n=128 (476ms) + ✓ MaxGraphSQL;n=256 (488ms) + ✓ MaxGraphSQL;n=512 (535ms) + ✓ MaxGraphSQL;n=1024 (742ms) + ✓ MaxGraphSQL;n=2048 (1565ms) + ✓ MaxGraphSQL;n=4096 (4287ms) + ✓ MaxGraphSQL;n=8192 (15426ms) + ✓ MaxGraphSQL;n=16384 (62249ms) + ✓ MaxGraphSQL;n=32768 (244870ms) + ✓ MaxGraphSQL;n=65536 (978517ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run6.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..d14ded7aff9a0b2651f7ea9c19f7b84169791e41 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (719ms) + ✓ MaxGraphSQL;n=32 (450ms) + ✓ MaxGraphSQL;n=64 (488ms) + ✓ MaxGraphSQL;n=128 (496ms) + ✓ MaxGraphSQL;n=256 (500ms) + ✓ MaxGraphSQL;n=512 (546ms) + ✓ MaxGraphSQL;n=1024 (722ms) + ✓ MaxGraphSQL;n=2048 (1405ms) + ✓ MaxGraphSQL;n=4096 (3674ms) + ✓ MaxGraphSQL;n=8192 (12937ms) + ✓ MaxGraphSQL;n=16384 (54991ms) + ✓ MaxGraphSQL;n=32768 (240621ms) + ✓ MaxGraphSQL;n=65536 (1121620ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run7.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..03a25d7811383992535f7274f10342e32c45192b --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (676ms) + ✓ MaxGraphSQL;n=32 (410ms) + ✓ MaxGraphSQL;n=64 (399ms) + ✓ MaxGraphSQL;n=128 (408ms) + ✓ MaxGraphSQL;n=256 (425ms) + ✓ MaxGraphSQL;n=512 (478ms) + ✓ MaxGraphSQL;n=1024 (663ms) + ✓ MaxGraphSQL;n=2048 (1400ms) + ✓ MaxGraphSQL;n=4096 (3889ms) + ✓ MaxGraphSQL;n=8192 (13892ms) + ✓ MaxGraphSQL;n=16384 (55705ms) + ✓ MaxGraphSQL;n=32768 (255993ms) + ✓ MaxGraphSQL;n=65536 (991055ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run8.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..bafb7676c76728386b480a407a0a8d6d0eb8bde3 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (737ms) + ✓ MaxGraphSQL;n=32 (469ms) + ✓ MaxGraphSQL;n=64 (462ms) + ✓ MaxGraphSQL;n=128 (486ms) + ✓ MaxGraphSQL;n=256 (526ms) + ✓ MaxGraphSQL;n=512 (581ms) + ✓ MaxGraphSQL;n=1024 (756ms) + ✓ MaxGraphSQL;n=2048 (1481ms) + ✓ MaxGraphSQL;n=4096 (3814ms) + ✓ MaxGraphSQL;n=8192 (13445ms) + ✓ MaxGraphSQL;n=16384 (53559ms) + ✓ MaxGraphSQL;n=32768 (217137ms) + ✓ MaxGraphSQL;n=65536 (1032683ms) + + + 13 passing (22m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run9.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..c4e2b6430850de7b05783f8e156127032d50c181 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear2/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (686ms) + ✓ MaxGraphSQL;n=32 (415ms) + ✓ MaxGraphSQL;n=64 (401ms) + ✓ MaxGraphSQL;n=128 (411ms) + ✓ MaxGraphSQL;n=256 (417ms) + ✓ MaxGraphSQL;n=512 (470ms) + ✓ MaxGraphSQL;n=1024 (647ms) + ✓ MaxGraphSQL;n=2048 (1366ms) + ✓ MaxGraphSQL;n=4096 (3802ms) + ✓ MaxGraphSQL;n=8192 (13912ms) + ✓ MaxGraphSQL;n=16384 (54675ms) + ✓ MaxGraphSQL;n=32768 (234362ms) + ✓ MaxGraphSQL;n=65536 (1130804ms) + + + 13 passing (24m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run1.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..d84fa6206e689d83b41680209f5edcab3488765c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1151ms) + ✓ MaxGraphSQL;n=32 (777ms) + ✓ MaxGraphSQL;n=64 (767ms) + ✓ MaxGraphSQL;n=128 (770ms) + ✓ MaxGraphSQL;n=256 (820ms) + ✓ MaxGraphSQL;n=512 (850ms) + ✓ MaxGraphSQL;n=1024 (925ms) + ✓ MaxGraphSQL;n=2048 (1044ms) + ✓ MaxGraphSQL;n=4096 (1467ms) + ✓ MaxGraphSQL;n=8192 (2896ms) + ✓ MaxGraphSQL;n=16384 (7877ms) + ✓ MaxGraphSQL;n=32768 (29223ms) + ✓ MaxGraphSQL;n=65536 (120124ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run10.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..b5e301c2607c66f73dac279645c73808de488e7a --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1198ms) + ✓ MaxGraphSQL;n=32 (784ms) + ✓ MaxGraphSQL;n=64 (776ms) + ✓ MaxGraphSQL;n=128 (788ms) + ✓ MaxGraphSQL;n=256 (861ms) + ✓ MaxGraphSQL;n=512 (814ms) + ✓ MaxGraphSQL;n=1024 (889ms) + ✓ MaxGraphSQL;n=2048 (1012ms) + ✓ MaxGraphSQL;n=4096 (1438ms) + ✓ MaxGraphSQL;n=8192 (2893ms) + ✓ MaxGraphSQL;n=16384 (7982ms) + ✓ MaxGraphSQL;n=32768 (28993ms) + ✓ MaxGraphSQL;n=65536 (115196ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run11.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..76a7c7a0bf470f22c0a60607160ede8e0c0b88fb --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1217ms) + ✓ MaxGraphSQL;n=32 (809ms) + ✓ MaxGraphSQL;n=64 (798ms) + ✓ MaxGraphSQL;n=128 (810ms) + ✓ MaxGraphSQL;n=256 (801ms) + ✓ MaxGraphSQL;n=512 (812ms) + ✓ MaxGraphSQL;n=1024 (870ms) + ✓ MaxGraphSQL;n=2048 (989ms) + ✓ MaxGraphSQL;n=4096 (1410ms) + ✓ MaxGraphSQL;n=8192 (2745ms) + ✓ MaxGraphSQL;n=16384 (7515ms) + ✓ MaxGraphSQL;n=32768 (28083ms) + ✓ MaxGraphSQL;n=65536 (119009ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run12.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..f9ee622986255824ffea6cb2b2dff30e787ddf87 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1293ms) + ✓ MaxGraphSQL;n=32 (886ms) + ✓ MaxGraphSQL;n=64 (867ms) + ✓ MaxGraphSQL;n=128 (919ms) + ✓ MaxGraphSQL;n=256 (881ms) + ✓ MaxGraphSQL;n=512 (890ms) + ✓ MaxGraphSQL;n=1024 (947ms) + ✓ MaxGraphSQL;n=2048 (1080ms) + ✓ MaxGraphSQL;n=4096 (1522ms) + ✓ MaxGraphSQL;n=8192 (2986ms) + ✓ MaxGraphSQL;n=16384 (8123ms) + ✓ MaxGraphSQL;n=32768 (30320ms) + ✓ MaxGraphSQL;n=65536 (123711ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run13.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..67cb5bc24e96ed1b839eea41250bbfce3e233f63 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1175ms) + ✓ MaxGraphSQL;n=32 (834ms) + ✓ MaxGraphSQL;n=64 (823ms) + ✓ MaxGraphSQL;n=128 (817ms) + ✓ MaxGraphSQL;n=256 (832ms) + ✓ MaxGraphSQL;n=512 (794ms) + ✓ MaxGraphSQL;n=1024 (835ms) + ✓ MaxGraphSQL;n=2048 (966ms) + ✓ MaxGraphSQL;n=4096 (1407ms) + ✓ MaxGraphSQL;n=8192 (2774ms) + ✓ MaxGraphSQL;n=16384 (7652ms) + ✓ MaxGraphSQL;n=32768 (28204ms) + ✓ MaxGraphSQL;n=65536 (117547ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run14.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..9a7861e58b97d355497a71930fd19de463626b1e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1250ms) + ✓ MaxGraphSQL;n=32 (869ms) + ✓ MaxGraphSQL;n=64 (855ms) + ✓ MaxGraphSQL;n=128 (858ms) + ✓ MaxGraphSQL;n=256 (878ms) + ✓ MaxGraphSQL;n=512 (894ms) + ✓ MaxGraphSQL;n=1024 (967ms) + ✓ MaxGraphSQL;n=2048 (1097ms) + ✓ MaxGraphSQL;n=4096 (1554ms) + ✓ MaxGraphSQL;n=8192 (3066ms) + ✓ MaxGraphSQL;n=16384 (8501ms) + ✓ MaxGraphSQL;n=32768 (31962ms) + ✓ MaxGraphSQL;n=65536 (130327ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run15.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..11a12b28b7734ee4b609a8cc3ba29c8dad6f56f4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1190ms) + ✓ MaxGraphSQL;n=32 (765ms) + ✓ MaxGraphSQL;n=64 (756ms) + ✓ MaxGraphSQL;n=128 (755ms) + ✓ MaxGraphSQL;n=256 (784ms) + ✓ MaxGraphSQL;n=512 (787ms) + ✓ MaxGraphSQL;n=1024 (858ms) + ✓ MaxGraphSQL;n=2048 (983ms) + ✓ MaxGraphSQL;n=4096 (1427ms) + ✓ MaxGraphSQL;n=8192 (2917ms) + ✓ MaxGraphSQL;n=16384 (8158ms) + ✓ MaxGraphSQL;n=32768 (29691ms) + ✓ MaxGraphSQL;n=65536 (117757ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run16.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..10680ed45685d03be73f357d6f21ab0c8f58bdd7 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1227ms) + ✓ MaxGraphSQL;n=32 (785ms) + ✓ MaxGraphSQL;n=64 (781ms) + ✓ MaxGraphSQL;n=128 (784ms) + ✓ MaxGraphSQL;n=256 (796ms) + ✓ MaxGraphSQL;n=512 (809ms) + ✓ MaxGraphSQL;n=1024 (874ms) + ✓ MaxGraphSQL;n=2048 (995ms) + ✓ MaxGraphSQL;n=4096 (1448ms) + ✓ MaxGraphSQL;n=8192 (2902ms) + ✓ MaxGraphSQL;n=16384 (8006ms) + ✓ MaxGraphSQL;n=32768 (28518ms) + ✓ MaxGraphSQL;n=65536 (112413ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run17.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..dbcc19057d14a08d08cc7a5bde27db0cf7d33f07 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1114ms) + ✓ MaxGraphSQL;n=32 (756ms) + ✓ MaxGraphSQL;n=64 (755ms) + ✓ MaxGraphSQL;n=128 (758ms) + ✓ MaxGraphSQL;n=256 (769ms) + ✓ MaxGraphSQL;n=512 (776ms) + ✓ MaxGraphSQL;n=1024 (855ms) + ✓ MaxGraphSQL;n=2048 (980ms) + ✓ MaxGraphSQL;n=4096 (1449ms) + ✓ MaxGraphSQL;n=8192 (2935ms) + ✓ MaxGraphSQL;n=16384 (8257ms) + ✓ MaxGraphSQL;n=32768 (29909ms) + ✓ MaxGraphSQL;n=65536 (119183ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run18.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..daaa8954b01b506121730eaa66f7de5a36590f52 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1328ms) + ✓ MaxGraphSQL;n=32 (888ms) + ✓ MaxGraphSQL;n=64 (890ms) + ✓ MaxGraphSQL;n=128 (889ms) + ✓ MaxGraphSQL;n=256 (900ms) + ✓ MaxGraphSQL;n=512 (915ms) + ✓ MaxGraphSQL;n=1024 (962ms) + ✓ MaxGraphSQL;n=2048 (1090ms) + ✓ MaxGraphSQL;n=4096 (1553ms) + ✓ MaxGraphSQL;n=8192 (2952ms) + ✓ MaxGraphSQL;n=16384 (8049ms) + ✓ MaxGraphSQL;n=32768 (30635ms) + ✓ MaxGraphSQL;n=65536 (132320ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run19.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..efa2a8575367278d899361b358efeca4a347d1c4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1171ms) + ✓ MaxGraphSQL;n=32 (816ms) + ✓ MaxGraphSQL;n=64 (794ms) + ✓ MaxGraphSQL;n=128 (806ms) + ✓ MaxGraphSQL;n=256 (896ms) + ✓ MaxGraphSQL;n=512 (854ms) + ✓ MaxGraphSQL;n=1024 (922ms) + ✓ MaxGraphSQL;n=2048 (1086ms) + ✓ MaxGraphSQL;n=4096 (1536ms) + ✓ MaxGraphSQL;n=8192 (2977ms) + ✓ MaxGraphSQL;n=16384 (8043ms) + ✓ MaxGraphSQL;n=32768 (29655ms) + ✓ MaxGraphSQL;n=65536 (128985ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run2.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..7993a0be09e020f6aaa8a980d8fe105d170c5379 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1133ms) + ✓ MaxGraphSQL;n=32 (792ms) + ✓ MaxGraphSQL;n=64 (776ms) + ✓ MaxGraphSQL;n=128 (786ms) + ✓ MaxGraphSQL;n=256 (807ms) + ✓ MaxGraphSQL;n=512 (858ms) + ✓ MaxGraphSQL;n=1024 (940ms) + ✓ MaxGraphSQL;n=2048 (1053ms) + ✓ MaxGraphSQL;n=4096 (1516ms) + ✓ MaxGraphSQL;n=8192 (2977ms) + ✓ MaxGraphSQL;n=16384 (8120ms) + ✓ MaxGraphSQL;n=32768 (29483ms) + ✓ MaxGraphSQL;n=65536 (123075ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run20.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..0f8bd35719e8367805ddcb5067ebf510236a51ee --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1154ms) + ✓ MaxGraphSQL;n=32 (777ms) + ✓ MaxGraphSQL;n=64 (765ms) + ✓ MaxGraphSQL;n=128 (773ms) + ✓ MaxGraphSQL;n=256 (779ms) + ✓ MaxGraphSQL;n=512 (802ms) + ✓ MaxGraphSQL;n=1024 (864ms) + ✓ MaxGraphSQL;n=2048 (984ms) + ✓ MaxGraphSQL;n=4096 (1419ms) + ✓ MaxGraphSQL;n=8192 (2807ms) + ✓ MaxGraphSQL;n=16384 (7737ms) + ✓ MaxGraphSQL;n=32768 (27691ms) + ✓ MaxGraphSQL;n=65536 (110918ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run3.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..4214ecc50b3157e76afe2c5269c381a0e78315a3 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1217ms) + ✓ MaxGraphSQL;n=32 (852ms) + ✓ MaxGraphSQL;n=64 (847ms) + ✓ MaxGraphSQL;n=128 (846ms) + ✓ MaxGraphSQL;n=256 (851ms) + ✓ MaxGraphSQL;n=512 (875ms) + ✓ MaxGraphSQL;n=1024 (949ms) + ✓ MaxGraphSQL;n=2048 (1053ms) + ✓ MaxGraphSQL;n=4096 (1477ms) + ✓ MaxGraphSQL;n=8192 (2859ms) + ✓ MaxGraphSQL;n=16384 (7692ms) + ✓ MaxGraphSQL;n=32768 (27294ms) + ✓ MaxGraphSQL;n=65536 (109856ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run4.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..644448618ec4ce7afd3a2239142e072be46be6ed --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1251ms) + ✓ MaxGraphSQL;n=32 (820ms) + ✓ MaxGraphSQL;n=64 (808ms) + ✓ MaxGraphSQL;n=128 (816ms) + ✓ MaxGraphSQL;n=256 (827ms) + ✓ MaxGraphSQL;n=512 (840ms) + ✓ MaxGraphSQL;n=1024 (909ms) + ✓ MaxGraphSQL;n=2048 (1038ms) + ✓ MaxGraphSQL;n=4096 (1498ms) + ✓ MaxGraphSQL;n=8192 (2961ms) + ✓ MaxGraphSQL;n=16384 (8131ms) + ✓ MaxGraphSQL;n=32768 (30285ms) + ✓ MaxGraphSQL;n=65536 (128575ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run5.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..a1171285245ca17dd937ab0c82c2e2f1202da28c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1139ms) + ✓ MaxGraphSQL;n=32 (740ms) + ✓ MaxGraphSQL;n=64 (734ms) + ✓ MaxGraphSQL;n=128 (744ms) + ✓ MaxGraphSQL;n=256 (760ms) + ✓ MaxGraphSQL;n=512 (774ms) + ✓ MaxGraphSQL;n=1024 (822ms) + ✓ MaxGraphSQL;n=2048 (974ms) + ✓ MaxGraphSQL;n=4096 (1458ms) + ✓ MaxGraphSQL;n=8192 (2935ms) + ✓ MaxGraphSQL;n=16384 (8070ms) + ✓ MaxGraphSQL;n=32768 (30529ms) + ✓ MaxGraphSQL;n=65536 (125737ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run6.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..af21209b3a6b3656dc00bed52b30467c1558ec07 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1123ms) + ✓ MaxGraphSQL;n=32 (768ms) + ✓ MaxGraphSQL;n=64 (747ms) + ✓ MaxGraphSQL;n=128 (756ms) + ✓ MaxGraphSQL;n=256 (772ms) + ✓ MaxGraphSQL;n=512 (856ms) + ✓ MaxGraphSQL;n=1024 (896ms) + ✓ MaxGraphSQL;n=2048 (1034ms) + ✓ MaxGraphSQL;n=4096 (1492ms) + ✓ MaxGraphSQL;n=8192 (2988ms) + ✓ MaxGraphSQL;n=16384 (8307ms) + ✓ MaxGraphSQL;n=32768 (30529ms) + ✓ MaxGraphSQL;n=65536 (129161ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run7.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..232b5660562354eb9a2009ecf8b09bd6c0e309ed --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1193ms) + ✓ MaxGraphSQL;n=32 (785ms) + ✓ MaxGraphSQL;n=64 (778ms) + ✓ MaxGraphSQL;n=128 (776ms) + ✓ MaxGraphSQL;n=256 (794ms) + ✓ MaxGraphSQL;n=512 (826ms) + ✓ MaxGraphSQL;n=1024 (869ms) + ✓ MaxGraphSQL;n=2048 (995ms) + ✓ MaxGraphSQL;n=4096 (1457ms) + ✓ MaxGraphSQL;n=8192 (2910ms) + ✓ MaxGraphSQL;n=16384 (7965ms) + ✓ MaxGraphSQL;n=32768 (28806ms) + ✓ MaxGraphSQL;n=65536 (113594ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run8.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..bb6404d884897f139ab14abb5b65f061928800a8 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1161ms) + ✓ MaxGraphSQL;n=32 (817ms) + ✓ MaxGraphSQL;n=64 (801ms) + ✓ MaxGraphSQL;n=128 (809ms) + ✓ MaxGraphSQL;n=256 (828ms) + ✓ MaxGraphSQL;n=512 (881ms) + ✓ MaxGraphSQL;n=1024 (929ms) + ✓ MaxGraphSQL;n=2048 (1050ms) + ✓ MaxGraphSQL;n=4096 (1512ms) + ✓ MaxGraphSQL;n=8192 (2960ms) + ✓ MaxGraphSQL;n=16384 (8104ms) + ✓ MaxGraphSQL;n=32768 (29557ms) + ✓ MaxGraphSQL;n=65536 (124271ms) + + + 13 passing (3m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run9.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..5f946efc226aa2249b5b8f6be208e87fdcd2c4d0 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear4/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1345ms) + ✓ MaxGraphSQL;n=32 (852ms) + ✓ MaxGraphSQL;n=64 (818ms) + ✓ MaxGraphSQL;n=128 (830ms) + ✓ MaxGraphSQL;n=256 (752ms) + ✓ MaxGraphSQL;n=512 (768ms) + ✓ MaxGraphSQL;n=1024 (823ms) + ✓ MaxGraphSQL;n=2048 (938ms) + ✓ MaxGraphSQL;n=4096 (1344ms) + ✓ MaxGraphSQL;n=8192 (2626ms) + ✓ MaxGraphSQL;n=16384 (7183ms) + ✓ MaxGraphSQL;n=32768 (25491ms) + ✓ MaxGraphSQL;n=65536 (102417ms) + + + 13 passing (2m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run1.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..40f7a4f1e015f46958396f8516b7bab5d4137f89 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2145ms) + ✓ MaxGraphSQL;n=32 (1595ms) + ✓ MaxGraphSQL;n=64 (1582ms) + ✓ MaxGraphSQL;n=128 (1594ms) + ✓ MaxGraphSQL;n=256 (1603ms) + ✓ MaxGraphSQL;n=512 (1606ms) + ✓ MaxGraphSQL;n=1024 (1638ms) + ✓ MaxGraphSQL;n=2048 (1678ms) + ✓ MaxGraphSQL;n=4096 (1831ms) + ✓ MaxGraphSQL;n=8192 (2194ms) + ✓ MaxGraphSQL;n=16384 (3472ms) + ✓ MaxGraphSQL;n=32768 (7428ms) + ✓ MaxGraphSQL;n=65536 (26217ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run10.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..21d400ee2795ecc2e8c67aeab3ae0a3a2cb019b4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2152ms) + ✓ MaxGraphSQL;n=32 (1625ms) + ✓ MaxGraphSQL;n=64 (1606ms) + ✓ MaxGraphSQL;n=128 (1622ms) + ✓ MaxGraphSQL;n=256 (1626ms) + ✓ MaxGraphSQL;n=512 (1640ms) + ✓ MaxGraphSQL;n=1024 (1652ms) + ✓ MaxGraphSQL;n=2048 (1754ms) + ✓ MaxGraphSQL;n=4096 (1819ms) + ✓ MaxGraphSQL;n=8192 (2193ms) + ✓ MaxGraphSQL;n=16384 (3400ms) + ✓ MaxGraphSQL;n=32768 (7228ms) + ✓ MaxGraphSQL;n=65536 (25310ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run11.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..323d12588ab0b02f02329fd96f645124e70f9f62 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1956ms) + ✓ MaxGraphSQL;n=32 (1446ms) + ✓ MaxGraphSQL;n=64 (1446ms) + ✓ MaxGraphSQL;n=128 (1449ms) + ✓ MaxGraphSQL;n=256 (1588ms) + ✓ MaxGraphSQL;n=512 (1456ms) + ✓ MaxGraphSQL;n=1024 (1486ms) + ✓ MaxGraphSQL;n=2048 (1558ms) + ✓ MaxGraphSQL;n=4096 (1813ms) + ✓ MaxGraphSQL;n=8192 (2186ms) + ✓ MaxGraphSQL;n=16384 (3480ms) + ✓ MaxGraphSQL;n=32768 (7029ms) + ✓ MaxGraphSQL;n=65536 (24772ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run12.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..c2be911b753949cbad383e4b87c288f98deb1484 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2170ms) + ✓ MaxGraphSQL;n=32 (1605ms) + ✓ MaxGraphSQL;n=64 (1600ms) + ✓ MaxGraphSQL;n=128 (1614ms) + ✓ MaxGraphSQL;n=256 (1660ms) + ✓ MaxGraphSQL;n=512 (1662ms) + ✓ MaxGraphSQL;n=1024 (1681ms) + ✓ MaxGraphSQL;n=2048 (1761ms) + ✓ MaxGraphSQL;n=4096 (1874ms) + ✓ MaxGraphSQL;n=8192 (2252ms) + ✓ MaxGraphSQL;n=16384 (3546ms) + ✓ MaxGraphSQL;n=32768 (7530ms) + ✓ MaxGraphSQL;n=65536 (25979ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run13.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..7d14cf32ea83ad9208ac0ee391564d33905bbde9 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2022ms) + ✓ MaxGraphSQL;n=32 (1483ms) + ✓ MaxGraphSQL;n=64 (1469ms) + ✓ MaxGraphSQL;n=128 (1474ms) + ✓ MaxGraphSQL;n=256 (1483ms) + ✓ MaxGraphSQL;n=512 (1498ms) + ✓ MaxGraphSQL;n=1024 (1553ms) + ✓ MaxGraphSQL;n=2048 (1589ms) + ✓ MaxGraphSQL;n=4096 (1776ms) + ✓ MaxGraphSQL;n=8192 (2149ms) + ✓ MaxGraphSQL;n=16384 (3326ms) + ✓ MaxGraphSQL;n=32768 (7199ms) + ✓ MaxGraphSQL;n=65536 (26171ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run14.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..39e6545acbc7bf0dcbd53e0819367b6626868b55 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2167ms) + ✓ MaxGraphSQL;n=32 (1569ms) + ✓ MaxGraphSQL;n=64 (1560ms) + ✓ MaxGraphSQL;n=128 (1566ms) + ✓ MaxGraphSQL;n=256 (1584ms) + ✓ MaxGraphSQL;n=512 (1601ms) + ✓ MaxGraphSQL;n=1024 (1610ms) + ✓ MaxGraphSQL;n=2048 (1678ms) + ✓ MaxGraphSQL;n=4096 (1817ms) + ✓ MaxGraphSQL;n=8192 (2198ms) + ✓ MaxGraphSQL;n=16384 (3497ms) + ✓ MaxGraphSQL;n=32768 (7588ms) + ✓ MaxGraphSQL;n=65536 (26058ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run15.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..9b72875fcca58f91b65490bf7e24abecaf603dde --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2233ms) + ✓ MaxGraphSQL;n=32 (1645ms) + ✓ MaxGraphSQL;n=64 (1635ms) + ✓ MaxGraphSQL;n=128 (1642ms) + ✓ MaxGraphSQL;n=256 (1655ms) + ✓ MaxGraphSQL;n=512 (1658ms) + ✓ MaxGraphSQL;n=1024 (1664ms) + ✓ MaxGraphSQL;n=2048 (1746ms) + ✓ MaxGraphSQL;n=4096 (1879ms) + ✓ MaxGraphSQL;n=8192 (2272ms) + ✓ MaxGraphSQL;n=16384 (3517ms) + ✓ MaxGraphSQL;n=32768 (7592ms) + ✓ MaxGraphSQL;n=65536 (26833ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run16.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..e00cb79cfa8cf974ecc1521e665805fd8fa41df4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2182ms) + ✓ MaxGraphSQL;n=32 (1660ms) + ✓ MaxGraphSQL;n=64 (1671ms) + ✓ MaxGraphSQL;n=128 (1658ms) + ✓ MaxGraphSQL;n=256 (1668ms) + ✓ MaxGraphSQL;n=512 (1689ms) + ✓ MaxGraphSQL;n=1024 (1705ms) + ✓ MaxGraphSQL;n=2048 (1771ms) + ✓ MaxGraphSQL;n=4096 (1905ms) + ✓ MaxGraphSQL;n=8192 (2324ms) + ✓ MaxGraphSQL;n=16384 (3717ms) + ✓ MaxGraphSQL;n=32768 (8141ms) + ✓ MaxGraphSQL;n=65536 (27879ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run17.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..804a7c7b1bc845a4ea2c1cc3caa0802792718185 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2206ms) + ✓ MaxGraphSQL;n=32 (1621ms) + ✓ MaxGraphSQL;n=64 (1602ms) + ✓ MaxGraphSQL;n=128 (1597ms) + ✓ MaxGraphSQL;n=256 (1623ms) + ✓ MaxGraphSQL;n=512 (1617ms) + ✓ MaxGraphSQL;n=1024 (1633ms) + ✓ MaxGraphSQL;n=2048 (1705ms) + ✓ MaxGraphSQL;n=4096 (1848ms) + ✓ MaxGraphSQL;n=8192 (2227ms) + ✓ MaxGraphSQL;n=16384 (3542ms) + ✓ MaxGraphSQL;n=32768 (7636ms) + ✓ MaxGraphSQL;n=65536 (26948ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run18.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..b024ab454844ef871bf2c7f765b9a3e00717bb3f --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2033ms) + ✓ MaxGraphSQL;n=32 (1463ms) + ✓ MaxGraphSQL;n=64 (1453ms) + ✓ MaxGraphSQL;n=128 (1458ms) + ✓ MaxGraphSQL;n=256 (1468ms) + ✓ MaxGraphSQL;n=512 (1469ms) + ✓ MaxGraphSQL;n=1024 (1483ms) + ✓ MaxGraphSQL;n=2048 (1551ms) + ✓ MaxGraphSQL;n=4096 (1675ms) + ✓ MaxGraphSQL;n=8192 (2044ms) + ✓ MaxGraphSQL;n=16384 (3276ms) + ✓ MaxGraphSQL;n=32768 (7237ms) + ✓ MaxGraphSQL;n=65536 (25175ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run19.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..fa8f60dde6c0e208d2b910377b5d1b145189ca35 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1963ms) + ✓ MaxGraphSQL;n=32 (1510ms) + ✓ MaxGraphSQL;n=64 (1499ms) + ✓ MaxGraphSQL;n=128 (1503ms) + ✓ MaxGraphSQL;n=256 (1513ms) + ✓ MaxGraphSQL;n=512 (1621ms) + ✓ MaxGraphSQL;n=1024 (1646ms) + ✓ MaxGraphSQL;n=2048 (1690ms) + ✓ MaxGraphSQL;n=4096 (1833ms) + ✓ MaxGraphSQL;n=8192 (2192ms) + ✓ MaxGraphSQL;n=16384 (3434ms) + ✓ MaxGraphSQL;n=32768 (7384ms) + ✓ MaxGraphSQL;n=65536 (25503ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run2.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..d226e3d677647976b74dc93c1c0af4d5629fc475 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2148ms) + ✓ MaxGraphSQL;n=32 (1580ms) + ✓ MaxGraphSQL;n=64 (1574ms) + ✓ MaxGraphSQL;n=128 (1577ms) + ✓ MaxGraphSQL;n=256 (1593ms) + ✓ MaxGraphSQL;n=512 (1587ms) + ✓ MaxGraphSQL;n=1024 (1611ms) + ✓ MaxGraphSQL;n=2048 (1677ms) + ✓ MaxGraphSQL;n=4096 (1812ms) + ✓ MaxGraphSQL;n=8192 (2177ms) + ✓ MaxGraphSQL;n=16384 (3437ms) + ✓ MaxGraphSQL;n=32768 (7392ms) + ✓ MaxGraphSQL;n=65536 (25585ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run20.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..4f9f3ce90289e435b084220942cbb8e5d2f5911a --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1921ms) + ✓ MaxGraphSQL;n=32 (1427ms) + ✓ MaxGraphSQL;n=64 (1420ms) + ✓ MaxGraphSQL;n=128 (1418ms) + ✓ MaxGraphSQL;n=256 (1482ms) + ✓ MaxGraphSQL;n=512 (1493ms) + ✓ MaxGraphSQL;n=1024 (1450ms) + ✓ MaxGraphSQL;n=2048 (1512ms) + ✓ MaxGraphSQL;n=4096 (1625ms) + ✓ MaxGraphSQL;n=8192 (1980ms) + ✓ MaxGraphSQL;n=16384 (3111ms) + ✓ MaxGraphSQL;n=32768 (6772ms) + ✓ MaxGraphSQL;n=65536 (23077ms) + + + 13 passing (49s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run3.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..a87c7ef0c85164091ede8fad83c74166f0951da0 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2097ms) + ✓ MaxGraphSQL;n=32 (1515ms) + ✓ MaxGraphSQL;n=64 (1519ms) + ✓ MaxGraphSQL;n=128 (1513ms) + ✓ MaxGraphSQL;n=256 (1523ms) + ✓ MaxGraphSQL;n=512 (1574ms) + ✓ MaxGraphSQL;n=1024 (1589ms) + ✓ MaxGraphSQL;n=2048 (1656ms) + ✓ MaxGraphSQL;n=4096 (1781ms) + ✓ MaxGraphSQL;n=8192 (2149ms) + ✓ MaxGraphSQL;n=16384 (3404ms) + ✓ MaxGraphSQL;n=32768 (7372ms) + ✓ MaxGraphSQL;n=65536 (26225ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run4.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..0e3a4d6b6a699f25b72b68f114a2e44e6ecc4b75 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2167ms) + ✓ MaxGraphSQL;n=32 (1610ms) + ✓ MaxGraphSQL;n=64 (1598ms) + ✓ MaxGraphSQL;n=128 (1608ms) + ✓ MaxGraphSQL;n=256 (1709ms) + ✓ MaxGraphSQL;n=512 (1716ms) + ✓ MaxGraphSQL;n=1024 (1729ms) + ✓ MaxGraphSQL;n=2048 (1818ms) + ✓ MaxGraphSQL;n=4096 (1939ms) + ✓ MaxGraphSQL;n=8192 (2310ms) + ✓ MaxGraphSQL;n=16384 (3601ms) + ✓ MaxGraphSQL;n=32768 (7743ms) + ✓ MaxGraphSQL;n=65536 (26485ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run5.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..d101c7ca04f66d6333c30bb78f0b7b723aac3d3a --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2317ms) + ✓ MaxGraphSQL;n=32 (1824ms) + ✓ MaxGraphSQL;n=64 (1745ms) + ✓ MaxGraphSQL;n=128 (1762ms) + ✓ MaxGraphSQL;n=256 (1766ms) + ✓ MaxGraphSQL;n=512 (1764ms) + ✓ MaxGraphSQL;n=1024 (1793ms) + ✓ MaxGraphSQL;n=2048 (1859ms) + ✓ MaxGraphSQL;n=4096 (2003ms) + ✓ MaxGraphSQL;n=8192 (2380ms) + ✓ MaxGraphSQL;n=16384 (3690ms) + ✓ MaxGraphSQL;n=32768 (7929ms) + ✓ MaxGraphSQL;n=65536 (27001ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run6.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..bb07438cc89ea6258dbb51023280edd847567364 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2127ms) + ✓ MaxGraphSQL;n=32 (1609ms) + ✓ MaxGraphSQL;n=64 (1597ms) + ✓ MaxGraphSQL;n=128 (1617ms) + ✓ MaxGraphSQL;n=256 (1624ms) + ✓ MaxGraphSQL;n=512 (1628ms) + ✓ MaxGraphSQL;n=1024 (1640ms) + ✓ MaxGraphSQL;n=2048 (1708ms) + ✓ MaxGraphSQL;n=4096 (1839ms) + ✓ MaxGraphSQL;n=8192 (2199ms) + ✓ MaxGraphSQL;n=16384 (3403ms) + ✓ MaxGraphSQL;n=32768 (7223ms) + ✓ MaxGraphSQL;n=65536 (25059ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run7.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..9a916ba8d01bb48b5b1c8522021ce5f9dc3e5110 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2232ms) + ✓ MaxGraphSQL;n=32 (1644ms) + ✓ MaxGraphSQL;n=64 (1631ms) + ✓ MaxGraphSQL;n=128 (1634ms) + ✓ MaxGraphSQL;n=256 (1677ms) + ✓ MaxGraphSQL;n=512 (1641ms) + ✓ MaxGraphSQL;n=1024 (1698ms) + ✓ MaxGraphSQL;n=2048 (1732ms) + ✓ MaxGraphSQL;n=4096 (1843ms) + ✓ MaxGraphSQL;n=8192 (2207ms) + ✓ MaxGraphSQL;n=16384 (3466ms) + ✓ MaxGraphSQL;n=32768 (7135ms) + ✓ MaxGraphSQL;n=65536 (24397ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run8.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..eeed719b39c24e13b827c3d988ec2f50edbba295 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2139ms) + ✓ MaxGraphSQL;n=32 (1556ms) + ✓ MaxGraphSQL;n=64 (1553ms) + ✓ MaxGraphSQL;n=128 (1557ms) + ✓ MaxGraphSQL;n=256 (1562ms) + ✓ MaxGraphSQL;n=512 (1564ms) + ✓ MaxGraphSQL;n=1024 (1588ms) + ✓ MaxGraphSQL;n=2048 (1652ms) + ✓ MaxGraphSQL;n=4096 (1776ms) + ✓ MaxGraphSQL;n=8192 (2149ms) + ✓ MaxGraphSQL;n=16384 (3410ms) + ✓ MaxGraphSQL;n=32768 (7443ms) + ✓ MaxGraphSQL;n=65536 (26516ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run9.test b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..f6bcc46a53410f650b8575da508de4a0f4766bd3 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2018-10-11/linear8/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2246ms) + ✓ MaxGraphSQL;n=32 (1661ms) + ✓ MaxGraphSQL;n=64 (1650ms) + ✓ MaxGraphSQL;n=128 (1650ms) + ✓ MaxGraphSQL;n=256 (1610ms) + ✓ MaxGraphSQL;n=512 (1600ms) + ✓ MaxGraphSQL;n=1024 (1627ms) + ✓ MaxGraphSQL;n=2048 (1696ms) + ✓ MaxGraphSQL;n=4096 (1821ms) + ✓ MaxGraphSQL;n=8192 (2171ms) + ✓ MaxGraphSQL;n=16384 (3377ms) + ✓ MaxGraphSQL;n=32768 (7348ms) + ✓ MaxGraphSQL;n=65536 (26075ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..82ca4f02930e50966974e669432050dcc9c0af3e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1435 +Mediana = 1430.5 +Variancia = 4773.47 +Desvio Padrao = 69.09 +Coef. Variacao = 0.05 +Min = 1285 +Max = 1590 +Esq, Dir. = 1409.5885 , 1460.4115 diff --git a/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..63b6dbdfaccdfee23814279439cf2865283297ea --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2048-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +2048 1463 +2048 1415 +2048 1590 +2048 1451 +2048 1521 +2048 1421 +2048 1398 +2048 1494 +2048 1420 +2048 1461 +2048 1319 +2048 1285 +2048 1369 +2048 1413 +2048 1480 +2048 1440 +2048 1515 +2048 1444 +2048 1410 +2048 1391 diff --git a/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..13e89db01a8d8f95ff6b6183a24f1fe92c6822af --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1043.9 +Mediana = 1031 +Variancia = 2556.94 +Desvio Padrao = 50.57 +Coef. Variacao = 0.05 +Min = 962 +Max = 1147 +Esq, Dir. = 1025.3017 , 1062.4983 diff --git a/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..663c3b306165c308b2613d9c8c677a7d9ea88836 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2048-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +2048 1137 +2048 1097 +2048 1018 +2048 989 +2048 1101 +2048 1020 +2048 1057 +2048 1029 +2048 962 +2048 993 +2048 1005 +2048 1147 +2048 1069 +2048 989 +2048 1033 +2048 1056 +2048 1095 +2048 1028 +2048 1013 +2048 1040 diff --git a/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..9321848c207a3817732d260252db59cb73c79f65 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1715.25 +Mediana = 1702 +Variancia = 10999.25 +Desvio Padrao = 104.88 +Coef. Variacao = 0.06 +Min = 1557 +Max = 1923 +Esq, Dir. = 1676.6761 , 1753.8239 diff --git a/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..7428cc689c65e964ccbb8933c65e8ea9ea451a65 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/2048-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +2048 1820 +2048 1795 +2048 1616 +2048 1698 +2048 1755 +2048 1742 +2048 1916 +2048 1706 +2048 1843 +2048 1764 +2048 1659 +2048 1727 +2048 1604 +2048 1557 +2048 1624 +2048 1583 +2048 1923 +2048 1673 +2048 1658 +2048 1642 diff --git a/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..4462a83d1f9cfdb056b8d0e386bb028abddcbcd6 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 461.4 +Mediana = 453 +Variancia = 1554.04 +Desvio Padrao = 39.42 +Coef. Variacao = 0.09 +Min = 418 +Max = 593 +Esq, Dir. = 446.9008 , 475.8992 diff --git a/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..50fd07d3ad23456a64c8ae087675eebb865ea015 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/256-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +256 496 +256 441 +256 593 +256 454 +256 437 +256 454 +256 431 +256 438 +256 452 +256 491 +256 423 +256 446 +256 438 +256 463 +256 486 +256 499 +256 457 +256 480 +256 431 +256 418 diff --git a/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..6a6a76538377a21eca629b4de5b078a7f8e3f159 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 826.95 +Mediana = 822 +Variancia = 2528.89 +Desvio Padrao = 50.29 +Coef. Variacao = 0.06 +Min = 748 +Max = 926 +Esq, Dir. = 808.454 , 845.446 diff --git a/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..a90d1b04e67a46aa3d421b0c296dfcdad4c7fb10 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/256-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +256 926 +256 776 +256 853 +256 767 +256 885 +256 801 +256 853 +256 785 +256 748 +256 811 +256 771 +256 916 +256 854 +256 795 +256 818 +256 846 +256 889 +256 828 +256 791 +256 826 diff --git a/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..a581dfdf286a079edb4d5ce720313ce5ffd1cb85 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1608.95 +Mediana = 1594 +Variancia = 7917.42 +Desvio Padrao = 88.98 +Coef. Variacao = 0.06 +Min = 1479 +Max = 1825 +Esq, Dir. = 1576.2232 , 1641.6768 diff --git a/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..40575dc358db1371da6cb516a0bd038b892a1ec2 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/256-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +256 1606 +256 1699 +256 1546 +256 1583 +256 1604 +256 1633 +256 1715 +256 1555 +256 1736 +256 1681 +256 1645 +256 1639 +256 1523 +256 1479 +256 1519 +256 1489 +256 1825 +256 1584 +256 1572 +256 1546 diff --git a/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..cc70b63462796d202dc22105dae97bc4c2489f50 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 441.35 +Mediana = 439 +Variancia = 637.71 +Desvio Padrao = 25.25 +Coef. Variacao = 0.06 +Min = 395 +Max = 508 +Esq, Dir. = 432.0619 , 450.6381 diff --git a/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..6922844c3c379bf74167833884d2189e73326eeb --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +32 508 +32 433 +32 447 +32 439 +32 424 +32 454 +32 421 +32 445 +32 442 +32 446 +32 424 +32 395 +32 434 +32 499 +32 432 +32 437 +32 450 +32 439 +32 442 +32 416 diff --git a/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..339bece9afcf680e66ecaec65afaceccf4ad023c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 818.75 +Mediana = 809.5 +Variancia = 2605.14 +Desvio Padrao = 51.04 +Coef. Variacao = 0.06 +Min = 745 +Max = 907 +Esq, Dir. = 799.9772 , 837.5228 diff --git a/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9305119096f6cc9e963ba83f15c54fefdfa44748 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +32 907 +32 770 +32 868 +32 770 +32 871 +32 798 +32 842 +32 776 +32 745 +32 800 +32 769 +32 903 +32 854 +32 780 +32 819 +32 837 +32 896 +32 822 +32 757 +32 791 diff --git a/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..dd460432713b1348c86e583bd26cb3a49400d1bc --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1594.35 +Mediana = 1569.5 +Variancia = 7329.5 +Desvio Padrao = 85.61 +Coef. Variacao = 0.05 +Min = 1465 +Max = 1818 +Esq, Dir. = 1562.8617 , 1625.8383 diff --git a/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..c034e9f516ad4830b86fab927c1a3a4d2a8c9fbc --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +32 1601 +32 1689 +32 1546 +32 1541 +32 1595 +32 1624 +32 1725 +32 1558 +32 1659 +32 1670 +32 1465 +32 1635 +32 1515 +32 1530 +32 1520 +32 1501 +32 1818 +32 1577 +32 1562 +32 1556 diff --git a/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..056497cf1a6a178554e14cad66a002c5bd0dc24c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 237059.3 +Mediana = 236902.5 +Variancia = 155986551.38 +Desvio Padrao = 12489.46 +Coef. Variacao = 0.05 +Min = 216374 +Max = 263475 +Esq, Dir. = 232465.6718 , 241652.9282 diff --git a/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9484487b15777cd9a1433536a6cd61267c3322b2 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32768-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +32768 226145 +32768 237245 +32768 240861 +32768 236217 +32768 247338 +32768 233810 +32768 244875 +32768 263475 +32768 223459 +32768 233982 +32768 240310 +32768 236560 +32768 216730 +32768 216374 +32768 247255 +32768 220130 +32768 255669 +32768 240300 +32768 231844 +32768 248607 diff --git a/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..f4e1552838fc026e7a1186cfef0dd8834e2f3fab --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 29053.75 +Mediana = 28903.5 +Variancia = 3491352.51 +Desvio Padrao = 1868.52 +Coef. Variacao = 0.06 +Min = 26384 +Max = 32624 +Esq, Dir. = 28366.5089 , 29740.9911 diff --git a/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..fe3c821303b1c70835d482025ab33cdc38964f62 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32768-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +32768 28610 +32768 32624 +32768 27211 +32768 27924 +32768 32491 +32768 28185 +32768 31475 +32768 29197 +32768 26946 +32768 26384 +32768 27009 +32768 29988 +32768 30591 +32768 27849 +32768 29522 +32768 29526 +32768 29831 +32768 27601 +32768 27229 +32768 30882 diff --git a/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..eb2fb04c4cfd2c2064b5080c6db1b029687bed55 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 7400.55 +Mediana = 7339 +Variancia = 89741.63 +Desvio Padrao = 299.57 +Coef. Variacao = 0.04 +Min = 6934 +Max = 8211 +Esq, Dir. = 7290.3684 , 7510.7316 diff --git a/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..0196b211de9f763bc0b5206f79891bdcb8ccbaaa --- /dev/null +++ b/experiments/develop_processed_dimentions_required/32768-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +32768 7242 +32768 7648 +32768 7192 +32768 7443 +32768 7660 +32768 8211 +32768 7929 +32768 7566 +32768 7350 +32768 7143 +32768 7437 +32768 7305 +32768 7324 +32768 6934 +32768 7187 +32768 7025 +32768 7399 +32768 7200 +32768 7488 +32768 7328 diff --git a/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..7f078950bf6cc6496a7205c61759fd09d7bf829a --- /dev/null +++ b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 3857.65 +Mediana = 3834 +Variancia = 24857.71 +Desvio Padrao = 157.66 +Coef. Variacao = 0.04 +Min = 3510 +Max = 4143 +Esq, Dir. = 3799.6614 , 3915.6386 diff --git a/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9f14bcc48b86c97114a01bb64388173405243b64 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/4096-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +4096 3925 +4096 3828 +4096 4060 +4096 4027 +4096 4052 +4096 3829 +4096 3818 +4096 4034 +4096 3849 +4096 3839 +4096 3598 +4096 3510 +4096 3692 +4096 3774 +4096 3946 +4096 3766 +4096 4143 +4096 3810 +4096 3849 +4096 3804 diff --git a/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..732cd1e7b5c9aaa0ee8f77fee95e2d0635ff8cda --- /dev/null +++ b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1484.55 +Mediana = 1469.5 +Variancia = 4247.94 +Desvio Padrao = 65.18 +Coef. Variacao = 0.04 +Min = 1364 +Max = 1580 +Esq, Dir. = 1460.5781 , 1508.5219 diff --git a/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..feafdd2d6f7d1eaeb800062a62734ab78693036e --- /dev/null +++ b/experiments/develop_processed_dimentions_required/4096-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +4096 1559 +4096 1578 +4096 1456 +4096 1412 +4096 1572 +4096 1466 +4096 1517 +4096 1473 +4096 1364 +4096 1406 +4096 1413 +4096 1580 +4096 1539 +4096 1423 +4096 1454 +4096 1487 +4096 1557 +4096 1461 +4096 1450 +4096 1524 diff --git a/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..776d6eb06fca363931a27b40e683f74bce4a71c4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1841.45 +Mediana = 1823.5 +Variancia = 10572.68 +Desvio Padrao = 102.82 +Coef. Variacao = 0.06 +Min = 1681 +Max = 2050 +Esq, Dir. = 1803.6315 , 1879.2685 diff --git a/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..86d07ec25aae35a16b94b55c2c665e145860175c --- /dev/null +++ b/experiments/develop_processed_dimentions_required/4096-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +4096 1881 +4096 1910 +4096 1754 +4096 1814 +4096 1881 +4096 1920 +4096 2043 +4096 1833 +4096 1970 +4096 1885 +4096 1804 +4096 1852 +4096 1743 +4096 1681 +4096 1777 +4096 1691 +4096 2050 +4096 1778 +4096 1801 +4096 1761 diff --git a/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..6f682610229781a5c65f74f218c234fe54b8ba22 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 511.6 +Mediana = 505 +Variancia = 1843.83 +Desvio Padrao = 42.94 +Coef. Variacao = 0.08 +Min = 451 +Max = 649 +Esq, Dir. = 495.8067 , 527.3933 diff --git a/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9d4ce6dd9d7a5504e6f3c97d6f3c9f9306e12a06 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/512-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +512 547 +512 491 +512 649 +512 508 +512 487 +512 514 +512 480 +512 489 +512 502 +512 541 +512 470 +512 451 +512 495 +512 523 +512 536 +512 554 +512 520 +512 527 +512 479 +512 469 diff --git a/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..8517c9bab2df2d7ccb3e2f8fdc43f946dc82fd78 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 848.7 +Mediana = 846.5 +Variancia = 2373.59 +Desvio Padrao = 48.72 +Coef. Variacao = 0.06 +Min = 766 +Max = 934 +Esq, Dir. = 830.7809 , 866.6191 diff --git a/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..d996ae703a9a973273fc43be2e08f8ce411a7eff --- /dev/null +++ b/experiments/develop_processed_dimentions_required/512-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +512 934 +512 795 +512 833 +512 783 +512 903 +512 817 +512 867 +512 849 +512 766 +512 840 +512 783 +512 889 +512 879 +512 804 +512 838 +512 868 +512 899 +512 844 +512 934 +512 849 diff --git a/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..98130b2fdd3e847543dd04a78ba14852116c45cd --- /dev/null +++ b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1626.65 +Mediana = 1614.5 +Variancia = 9227.92 +Desvio Padrao = 96.06 +Coef. Variacao = 0.06 +Min = 1490 +Max = 1832 +Esq, Dir. = 1591.3183 , 1661.9817 diff --git a/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..047155dadd308f0778cf67f7baa4cd683cd2e4e9 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/512-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +512 1620 +512 1699 +512 1542 +512 1609 +512 1674 +512 1641 +512 1816 +512 1562 +512 1759 +512 1680 +512 1630 +512 1647 +512 1532 +512 1490 +512 1593 +512 1490 +512 1832 +512 1588 +512 1580 +512 1549 diff --git a/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..38161021b5b2fbffd220fd662ff624aa5f109561 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 425.7 +Mediana = 419.5 +Variancia = 610.43 +Desvio Padrao = 24.71 +Coef. Variacao = 0.06 +Min = 392 +Max = 494 +Esq, Dir. = 416.6128 , 434.7872 diff --git a/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..a1463db9b92f0ab2cda845e1ac0fbcdb9ce76ec8 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/64-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +64 477 +64 415 +64 446 +64 429 +64 420 +64 423 +64 409 +64 417 +64 443 +64 418 +64 401 +64 392 +64 427 +64 494 +64 419 +64 430 +64 433 +64 407 +64 400 +64 414 diff --git a/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..4912be522d8f1ff29d330061896e6a3bec0f517f --- /dev/null +++ b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 810.4 +Mediana = 804 +Variancia = 2351.52 +Desvio Padrao = 48.49 +Coef. Variacao = 0.06 +Min = 741 +Max = 896 +Esq, Dir. = 792.5645 , 828.2355 diff --git a/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..09e876151841376cf1dc9f1dbb85ddc43978ffb3 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/64-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +64 896 +64 757 +64 856 +64 761 +64 857 +64 790 +64 840 +64 763 +64 741 +64 791 +64 758 +64 893 +64 845 +64 773 +64 807 +64 827 +64 875 +64 815 +64 762 +64 801 diff --git a/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..11d9d401e09d86eb71139765fbfce51dc577a090 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1585.85 +Mediana = 1568.5 +Variancia = 7494.03 +Desvio Padrao = 86.57 +Coef. Variacao = 0.05 +Min = 1452 +Max = 1815 +Esq, Dir. = 1554.0102 , 1617.6898 diff --git a/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e06a2bbb5efb0b99295f1d26d2ed92dfb5fc49ba --- /dev/null +++ b/experiments/develop_processed_dimentions_required/64-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +64 1597 +64 1671 +64 1529 +64 1576 +64 1585 +64 1621 +64 1702 +64 1545 +64 1660 +64 1662 +64 1452 +64 1622 +64 1539 +64 1481 +64 1522 +64 1479 +64 1815 +64 1560 +64 1561 +64 1538 diff --git a/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..d7efa01e3d3082147386baec3f96249b826e084b --- /dev/null +++ b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1079043.2 +Mediana = 1090197 +Variancia = 2664015443.43 +Desvio Padrao = 51614.1 +Coef. Variacao = 0.05 +Min = 960288 +Max = 1165783 +Esq, Dir. = 1060059.5102 , 1098026.8898 diff --git a/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..badba01e4cbd8bfb960552973bb9e710807356a2 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/65536-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +65536 1071770 +65536 1051007 +65536 1052638 +65536 1100360 +65536 1091436 +65536 1091070 +65536 1119651 +65536 1109543 +65536 1103841 +65536 1031495 +65536 1111129 +65536 982053 +65536 1046429 +65536 1035282 +65536 1165783 +65536 960288 +65536 1144491 +65536 1089324 +65536 1085978 +65536 1137296 diff --git a/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..98832721d4948230bac6fa06253f571b810163a6 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 122099.1 +Mediana = 120826 +Variancia = 93917082.41 +Desvio Padrao = 9691.08 +Coef. Variacao = 0.08 +Min = 108497 +Max = 138534 +Esq, Dir. = 118534.7154 , 125663.4846 diff --git a/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..6ac29f364358f18b3b3e5920233aecff8150267d --- /dev/null +++ b/experiments/develop_processed_dimentions_required/65536-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +65536 117168 +65536 138534 +65536 111041 +65536 117124 +65536 134850 +65536 113470 +65536 132488 +65536 128766 +65536 108497 +65536 115450 +65536 113523 +65536 128313 +65536 132945 +65536 110086 +65536 127696 +65536 124484 +65536 129914 +65536 110435 +65536 116130 +65536 131068 diff --git a/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..e9b6c072f5610ba48ce4c6883488c7918b019f22 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 25596.45 +Mediana = 25555.5 +Variancia = 1550717.73 +Desvio Padrao = 1245.28 +Coef. Variacao = 0.05 +Min = 23278 +Max = 28335 +Esq, Dir. = 25138.4361 , 26054.4639 diff --git a/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..f2352e804a30ac851812f8ac3ec2b7bbf10612a4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/65536-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +65536 26248 +65536 26562 +65536 24384 +65536 26233 +65536 26677 +65536 28335 +65536 26906 +65536 27310 +65536 25374 +65536 24764 +65536 25828 +65536 24555 +65536 25737 +65536 23278 +65536 24359 +65536 24179 +65536 24880 +65536 25055 +65536 26435 +65536 24830 diff --git a/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..602745f04f6c974f9b7cd76b917304a93ea576e4 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 13772.9 +Mediana = 13744.5 +Variancia = 330900.31 +Desvio Padrao = 575.24 +Coef. Variacao = 0.04 +Min = 12527 +Max = 14894 +Esq, Dir. = 13561.3267 , 13984.4733 diff --git a/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..91f60d6a0edcd1406c315631cdf1374057717f03 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/8192-linear2-MaxGraphSQL.res @@ -0,0 +1,20 @@ +8192 13977 +8192 13602 +8192 14423 +8192 14007 +8192 14376 +8192 14083 +8192 13529 +8192 14656 +8192 13670 +8192 13833 +8192 12874 +8192 12527 +8192 13095 +8192 13390 +8192 14006 +8192 13441 +8192 14894 +8192 13722 +8192 13767 +8192 13586 diff --git a/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..a5444148963556e7cd95515675ee5b6ada24580b --- /dev/null +++ b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 2900.1 +Mediana = 2898 +Variancia = 13021.04 +Desvio Padrao = 114.11 +Coef. Variacao = 0.04 +Min = 2721 +Max = 3107 +Esq, Dir. = 2858.1304 , 2942.0696 diff --git a/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..a3e5c41291e95cf2d1d217f823cd8994fc460042 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/8192-linear4-MaxGraphSQL.res @@ -0,0 +1,20 @@ +8192 2934 +8192 3089 +8192 2826 +8192 2770 +8192 3107 +8192 2912 +8192 2936 +8192 2873 +8192 2739 +8192 2721 +8192 2758 +8192 3033 +8192 2998 +8192 2825 +8192 2880 +8192 2920 +8192 3003 +8192 2884 +8192 2796 +8192 2998 diff --git a/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.R b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..754aed7a0b274fe233668a20df895d6706b41160 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 2209 +Mediana = 2189 +Variancia = 11266 +Desvio Padrao = 106.14 +Coef. Variacao = 0.05 +Min = 2030 +Max = 2430 +Esq, Dir. = 2169.9611 , 2248.0389 diff --git a/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.res b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..0bcdafffd2bc9456c0f97767772330f12435fb17 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/8192-linear8-MaxGraphSQL.res @@ -0,0 +1,20 @@ +8192 2259 +8192 2303 +8192 2146 +8192 2198 +8192 2268 +8192 2306 +8192 2430 +8192 2155 +8192 2340 +8192 2250 +8192 2167 +8192 2210 +8192 2116 +8192 2030 +8192 2099 +8192 2055 +8192 2376 +8192 2156 +8192 2180 +8192 2136 diff --git a/experiments/develop_processed_dimentions_required/mean_by_linear2.res b/experiments/develop_processed_dimentions_required/mean_by_linear2.res new file mode 100644 index 0000000000000000000000000000000000000000..17fcab55afdc7cf354ab937c92396c1542ea9529 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/mean_by_linear2.res @@ -0,0 +1,13 @@ +16 701.55 +32 441.35 +64 425.7 +128 443.75 +256 461.4 +512 511.6 +1024 696.9 +2048 1435 +4096 3857.65 +8192 13772.9 +16384 56748.15 +32768 237059.3 +65536 1079043.2 diff --git a/experiments/develop_processed_dimentions_required/mean_by_linear4.res b/experiments/develop_processed_dimentions_required/mean_by_linear4.res new file mode 100644 index 0000000000000000000000000000000000000000..cd0cc7e925c9b3f5bb1814c29ab711fefc796c76 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/mean_by_linear4.res @@ -0,0 +1,13 @@ +16 1195.05 +32 818.75 +64 810.4 +128 815.95 +256 826.95 +512 848.7 +1024 909.7 +2048 1043.9 +4096 1484.55 +8192 2900.1 +16384 7896.85 +32768 29053.75 +65536 122099.1 diff --git a/experiments/develop_processed_dimentions_required/mean_by_linear8.res b/experiments/develop_processed_dimentions_required/mean_by_linear8.res new file mode 100644 index 0000000000000000000000000000000000000000..d89ecf4b225c63c8b7635df48aa2cf123bd16bb7 --- /dev/null +++ b/experiments/develop_processed_dimentions_required/mean_by_linear8.res @@ -0,0 +1,13 @@ +16 2122 +32 1594.35 +64 1585.85 +128 1589.75 +256 1608.95 +512 1626.65 +1024 1650.85 +2048 1715.25 +4096 1841.45 +8192 2209 +16384 3444.8 +32768 7400.55 +65536 25596.45 diff --git a/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..0d43e958696a2d39b2ebad98f76a4ac230edbf76 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1681.08 +Mediana = 1625 +Variancia = 51548.21 +Desvio Padrao = 227.04 +Coef. Variacao = 0.14 +Min = 1480 +Max = 2944 +Esq, Dir. = 1646.992 , 1715.1746 diff --git a/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..0a2c8f819aa3b15a6dd606705903535e5e83d831 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/1024-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +1024 1651 +1024 1789 +1024 1631 +1024 1672 +1024 1676 +1024 1562 +1024 1666 +1024 1543 +1024 1627 +1024 1654 +1024 1506 +1024 1683 +1024 1606 +1024 1594 +1024 2372 +1024 1534 +1024 1723 +1024 1579 +1024 1548 +1024 1678 +1024 1480 +1024 1572 +1024 1561 +1024 1561 +1024 1690 +1024 1709 +1024 1631 +1024 1551 +1024 1587 +1024 1707 +1024 1560 +1024 1609 +1024 2194 +1024 1550 +1024 1608 +1024 1574 +1024 1643 +1024 1565 +1024 1614 +1024 1623 +1024 1715 +1024 1594 +1024 1782 +1024 1657 +1024 1677 +1024 1637 +1024 1519 +1024 1636 +1024 1551 +1024 1559 +1024 1670 +1024 1636 +1024 1672 +1024 1607 +1024 1735 +1024 1751 +1024 1681 +1024 1530 +1024 1623 +1024 2579 +1024 1666 +1024 1679 +1024 1711 +1024 2446 +1024 1693 +1024 1659 +1024 1630 +1024 1630 +1024 1755 +1024 1617 +1024 1753 +1024 1629 +1024 1599 +1024 1749 +1024 1522 +1024 1762 +1024 1550 +1024 1901 +1024 1951 +1024 1546 +1024 1621 +1024 1617 +1024 1655 +1024 2604 +1024 2155 +1024 1561 +1024 1612 +1024 1628 +1024 1795 +1024 1766 +1024 1566 +1024 1508 +1024 1712 +1024 1566 +1024 2174 +1024 1547 +1024 1565 +1024 1611 +1024 1486 +1024 1509 +1024 1649 +1024 1564 +1024 1546 +1024 1598 +1024 1636 +1024 1593 +1024 1605 +1024 2944 +1024 1595 +1024 1496 +1024 1645 +1024 1495 +1024 1603 +1024 1529 +1024 1621 +1024 1589 +1024 1714 +1024 1722 +1024 1609 +1024 1577 diff --git a/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..5ba323eb78cdacf5d840af70823c1d1720b319d8 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1741.08 +Mediana = 1677.5 +Variancia = 70378.81 +Desvio Padrao = 265.29 +Coef. Variacao = 0.15 +Min = 1463 +Max = 3386 +Esq, Dir. = 1701.2407 , 1780.9093 diff --git a/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..26ce205b796eda6b84c7a60a380e64ee373813b7 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/128-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +128 1598 +128 1773 +128 1815 +128 1906 +128 1811 +128 1706 +128 1624 +128 1470 +128 1592 +128 1624 +128 1512 +128 1506 +128 1573 +128 1552 +128 1526 +128 1779 +128 1678 +128 1550 +128 1528 +128 1646 +128 1553 +128 1863 +128 1534 +128 1668 +128 1977 +128 1675 +128 2062 +128 1707 +128 1561 +128 2009 +128 1541 +128 1906 +128 1593 +128 1791 +128 3031 +128 1534 +128 1843 +128 1801 +128 1574 +128 2270 +128 1625 +128 1540 +128 1870 +128 1812 +128 1907 +128 1587 +128 1484 +128 1603 +128 1511 +128 1917 +128 1795 +128 2013 +128 1945 +128 1603 +128 2287 +128 1629 +128 2005 +128 1471 +128 1777 +128 1674 +128 1576 +128 1642 +128 1585 +128 1561 +128 2051 +128 1611 +128 1764 +128 3386 +128 1851 +128 1749 +128 1720 +128 1539 +128 1923 +128 2020 +128 1706 +128 2108 +128 1863 +128 1535 +128 1560 +128 1504 +128 1590 +128 1743 +128 1817 +128 1579 +128 1611 +128 1780 +128 1920 +128 1510 +128 1674 +128 2129 +128 1519 +128 1484 +128 1518 +128 1544 +128 1516 +128 1763 +128 1606 +128 1579 +128 1817 +128 1670 +128 1687 +128 1785 +128 1769 +128 1677 +128 1936 +128 2070 +128 1573 +128 1679 +128 1584 +128 1703 +128 1949 +128 1805 +128 1667 +128 1751 +128 2078 +128 1463 +128 1684 +128 1862 +128 1721 +128 1546 diff --git a/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..cead80d700176d84ca00642bdac7436385e01d15 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 2143.94 +Mediana = 2134.5 +Variancia = 7607.69 +Desvio Padrao = 87.22 +Coef. Variacao = 0.04 +Min = 1901 +Max = 2371 +Esq, Dir. = 2130.8449 , 2157.0384 diff --git a/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..db73e70fff000eb1c6b3666a501ad62c887ebb64 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/16-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +16 2110 +16 2092 +16 2062 +16 2265 +16 2132 +16 2162 +16 2023 +16 2057 +16 2100 +16 1901 +16 2077 +16 2078 +16 2112 +16 2125 +16 2090 +16 2095 +16 2287 +16 2131 +16 2076 +16 2112 +16 1997 +16 2151 +16 2030 +16 2269 +16 2285 +16 2252 +16 2219 +16 2145 +16 2174 +16 2165 +16 2055 +16 2196 +16 2148 +16 2155 +16 2065 +16 2049 +16 2141 +16 2159 +16 2085 +16 2149 +16 2141 +16 2074 +16 2313 +16 2342 +16 2309 +16 2187 +16 2003 +16 2135 +16 2063 +16 2119 +16 2371 +16 2306 +16 2287 +16 2173 +16 2103 +16 2247 +16 2244 +16 2018 +16 2149 +16 2142 +16 2133 +16 2159 +16 2088 +16 2134 +16 2222 +16 2089 +16 2084 +16 2156 +16 2176 +16 2215 +16 2264 +16 2071 +16 2218 +16 2174 +16 2115 +16 2271 +16 2208 +16 2095 +16 2081 +16 2017 +16 2159 +16 2232 +16 2206 +16 2122 +16 2161 +16 2164 +16 2157 +16 2018 +16 2219 +16 2132 +16 2059 +16 2114 +16 2004 +16 2100 +16 2068 +16 2116 +16 2309 +16 2106 +16 2089 +16 2058 +16 2344 +16 2030 +16 2186 +16 2188 +16 2293 +16 2147 +16 2128 +16 2199 +16 2119 +16 2009 +16 2171 +16 2083 +16 2151 +16 2101 +16 2222 +16 1948 +16 2215 +16 2239 +16 2129 +16 2106 diff --git a/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..1f2a7a1b5238effb251f6f5b3840206d213ece90 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 3676.32 +Mediana = 3641 +Variancia = 146128.08 +Desvio Padrao = 382.27 +Coef. Variacao = 0.1 +Min = 3199 +Max = 7400 +Esq, Dir. = 3618.9178 , 3733.7156 diff --git a/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e8f47efff232e80b08f73a2c5806967444210827 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/16384-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +16384 3677 +16384 4002 +16384 3293 +16384 3768 +16384 3676 +16384 3595 +16384 3734 +16384 3380 +16384 3608 +16384 3820 +16384 3751 +16384 3771 +16384 3526 +16384 3642 +16384 3586 +16384 3553 +16384 3939 +16384 3638 +16384 3556 +16384 3537 +16384 3296 +16384 3479 +16384 3536 +16384 3250 +16384 3797 +16384 3751 +16384 3691 +16384 3551 +16384 3791 +16384 3764 +16384 3819 +16384 3581 +16384 3639 +16384 3545 +16384 3459 +16384 3456 +16384 3484 +16384 3715 +16384 3685 +16384 3532 +16384 3672 +16384 3367 +16384 4029 +16384 3832 +16384 3700 +16384 3626 +16384 3378 +16384 3587 +16384 3410 +16384 3578 +16384 3756 +16384 3691 +16384 3948 +16384 3472 +16384 3791 +16384 3998 +16384 3894 +16384 3199 +16384 3670 +16384 3585 +16384 3592 +16384 3867 +16384 3620 +16384 3668 +16384 3630 +16384 3803 +16384 3464 +16384 3625 +16384 7400 +16384 3708 +16384 3754 +16384 3853 +16384 3735 +16384 3856 +16384 3503 +16384 3574 +16384 3756 +16384 3554 +16384 3514 +16384 3341 +16384 3664 +16384 3817 +16384 3744 +16384 3594 +16384 3646 +16384 3696 +16384 3625 +16384 3708 +16384 4022 +16384 3867 +16384 3526 +16384 3649 +16384 3896 +16384 3600 +16384 3654 +16384 3560 +16384 3763 +16384 3468 +16384 3485 +16384 3562 +16384 3794 +16384 3577 +16384 3640 +16384 3710 +16384 3832 +16384 3414 +16384 3637 +16384 3962 +16384 3675 +16384 3207 +16384 3535 +16384 3469 +16384 3669 +16384 3764 +16384 3529 +16384 3557 +16384 3896 +16384 3586 +16384 3746 +16384 3540 diff --git a/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b8b812f47d6d792d22cf7ce602b064a1e8b61b27 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1862.39 +Mediana = 1699 +Variancia = 273172.11 +Desvio Padrao = 522.66 +Coef. Variacao = 0.28 +Min = 1539 +Max = 3959 +Esq, Dir. = 1783.9124 , 1940.8709 diff --git a/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..504be9ba046a9c76dfed74f81961c1f07883fd14 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/2048-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +2048 1699 +2048 1885 +2048 1700 +2048 1743 +2048 1747 +2048 1627 +2048 1721 +2048 1612 +2048 1703 +2048 1739 +2048 1578 +2048 2375 +2048 1668 +2048 1659 +2048 3630 +2048 1600 +2048 1841 +2048 1658 +2048 1641 +2048 1741 +2048 1539 +2048 1644 +2048 1634 +2048 1623 +2048 1760 +2048 1777 +2048 1699 +2048 1619 +2048 1663 +2048 1805 +2048 1628 +2048 1690 +2048 3238 +2048 1623 +2048 1670 +2048 1618 +2048 1700 +2048 1634 +2048 1703 +2048 1687 +2048 1778 +2048 1671 +2048 1868 +2048 1735 +2048 1757 +2048 1713 +2048 1599 +2048 1719 +2048 1595 +2048 1603 +2048 1734 +2048 1763 +2048 1867 +2048 1681 +2048 1790 +2048 1853 +2048 1746 +2048 1584 +2048 1685 +2048 3432 +2048 1684 +2048 1774 +2048 2636 +2048 3817 +2048 1705 +2048 1737 +2048 1680 +2048 1746 +2048 1833 +2048 1685 +2048 1828 +2048 1710 +2048 1673 +2048 1812 +2048 1598 +2048 1829 +2048 1635 +2048 3124 +2048 3192 +2048 1612 +2048 1704 +2048 1685 +2048 1652 +2048 3591 +2048 3915 +2048 1646 +2048 1677 +2048 1715 +2048 1893 +2048 1779 +2048 1719 +2048 1597 +2048 1794 +2048 1644 +2048 3959 +2048 1611 +2048 1635 +2048 1687 +2048 1559 +2048 1569 +2048 1732 +2048 1638 +2048 1632 +2048 1684 +2048 1723 +2048 1638 +2048 1683 +2048 3138 +2048 1677 +2048 1554 +2048 1732 +2048 1562 +2048 2147 +2048 1599 +2048 1692 +2048 1655 +2048 1807 +2048 1805 +2048 1698 +2048 1656 diff --git a/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..500efa3256f64552db50a670f6bd452e26e5bbc4 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1610.47 +Mediana = 1595.5 +Variancia = 5512.82 +Desvio Padrao = 74.25 +Coef. Variacao = 0.05 +Min = 1484 +Max = 1867 +Esq, Dir. = 1599.318 , 1621.6154 diff --git a/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..62140a93aa41c8e24030c75d541d402549c78a5f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/256-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +256 1642 +256 1633 +256 1579 +256 1649 +256 1647 +256 1566 +256 1622 +256 1517 +256 1603 +256 1627 +256 1525 +256 1537 +256 1578 +256 1567 +256 1555 +256 1520 +256 1688 +256 1555 +256 1555 +256 1621 +256 1484 +256 1579 +256 1558 +256 1545 +256 1685 +256 1707 +256 1603 +256 1592 +256 1567 +256 1684 +256 1579 +256 1577 +256 1743 +256 1542 +256 1595 +256 1531 +256 1574 +256 1560 +256 1593 +256 1628 +256 1685 +256 1612 +256 1749 +256 1630 +256 1663 +256 1620 +256 1491 +256 1610 +256 1517 +256 1530 +256 1641 +256 1687 +256 1674 +256 1595 +256 1711 +256 1646 +256 1743 +256 1489 +256 1612 +256 1596 +256 1590 +256 1661 +256 1685 +256 1650 +256 1686 +256 1631 +256 1503 +256 1665 +256 1749 +256 1597 +256 1725 +256 1576 +256 1584 +256 1729 +256 1509 +256 1711 +256 1556 +256 1732 +256 1568 +256 1518 +256 1598 +256 1594 +256 1642 +256 1592 +256 1670 +256 1540 +256 1534 +256 1594 +256 1693 +256 1702 +256 1528 +256 1491 +256 1685 +256 1584 +256 1545 +256 1867 +256 1555 +256 1588 +256 1622 +256 1512 +256 1616 +256 1586 +256 1536 +256 1582 +256 1628 +256 1557 +256 1580 +256 1780 +256 1600 +256 1525 +256 1618 +256 1498 +256 1693 +256 1811 +256 1648 +256 1501 +256 1696 +256 1680 +256 1591 +256 1556 diff --git a/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..8ae3edef04bfd99c31f9e4bc5d3bbe46fe4eb601 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1848.56 +Mediana = 1729 +Variancia = 89922.57 +Desvio Padrao = 299.87 +Coef. Variacao = 0.16 +Min = 1473 +Max = 2466 +Esq, Dir. = 1803.5315 , 1893.5851 diff --git a/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..29e310570d545dcfce20f04f7cd87f784cec7b6c --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/32-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +32 1594 +32 1814 +32 2011 +32 2264 +32 2150 +32 2143 +32 1544 +32 1474 +32 1617 +32 1473 +32 1527 +32 1519 +32 1582 +32 1556 +32 1522 +32 2062 +32 1704 +32 1557 +32 1536 +32 1661 +32 1943 +32 2065 +32 1551 +32 2224 +32 2303 +32 1679 +32 2262 +32 2114 +32 1561 +32 2221 +32 1540 +32 2260 +32 1581 +32 2116 +32 1710 +32 1544 +32 2050 +32 2130 +32 1549 +32 2010 +32 1618 +32 1532 +32 1769 +32 2442 +32 2145 +32 1612 +32 1505 +32 1606 +32 1528 +32 1959 +32 2466 +32 2140 +32 2229 +32 1614 +32 2093 +32 1647 +32 2214 +32 1494 +32 2022 +32 1597 +32 1609 +32 1660 +32 1565 +32 1534 +32 2225 +32 1582 +32 2020 +32 1822 +32 1692 +32 2215 +32 1748 +32 1539 +32 2190 +32 2284 +32 1992 +32 2205 +32 2212 +32 1522 +32 1558 +32 1528 +32 1610 +32 2133 +32 2364 +32 1567 +32 1596 +32 2121 +32 2052 +32 1514 +32 1706 +32 2020 +32 1536 +32 1494 +32 1522 +32 1541 +32 1524 +32 1975 +32 2422 +32 1598 +32 1959 +32 1964 +32 2447 +32 2127 +32 2019 +32 2045 +32 2175 +32 2171 +32 1581 +32 1645 +32 1575 +32 2042 +32 2221 +32 2039 +32 1591 +32 1988 +32 2246 +32 1476 +32 1666 +32 2241 +32 2088 +32 1569 diff --git a/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..ee150d0a5cee8e33ef0eabda0b2bcae9f08d178b --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 8586.03 +Mediana = 8619.5 +Variancia = 345866.79 +Desvio Padrao = 588.1 +Coef. Variacao = 0.07 +Min = 7004 +Max = 9954 +Esq, Dir. = 8497.7272 , 8674.3395 diff --git a/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..de6451c5a425b41c597bd0702b58900d5385ea21 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/32768-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +32768 9115 +32768 9242 +32768 7068 +32768 8858 +32768 8132 +32768 8659 +32768 8616 +32768 7702 +32768 8233 +32768 9045 +32768 8990 +32768 9112 +32768 8016 +32768 8427 +32768 8304 +32768 8025 +32768 9080 +32768 8451 +32768 8170 +32768 7892 +32768 8101 +32768 8470 +32768 8150 +32768 7561 +32768 9350 +32768 8353 +32768 9056 +32768 8830 +32768 8838 +32768 9227 +32768 9031 +32768 8460 +32768 8128 +32768 8690 +32768 8401 +32768 7858 +32768 8182 +32768 9571 +32768 8474 +32768 8225 +32768 8277 +32768 7378 +32768 8647 +32768 8753 +32768 9169 +32768 8451 +32768 7641 +32768 7945 +32768 7825 +32768 8704 +32768 8708 +32768 8881 +32768 9954 +32768 7689 +32768 9008 +32768 9270 +32768 9608 +32768 7004 +32768 8613 +32768 8276 +32768 9441 +32768 8704 +32768 8366 +32768 8551 +32768 8726 +32768 8741 +32768 7718 +32768 8442 +32768 9464 +32768 8618 +32768 8488 +32768 9038 +32768 9363 +32768 9296 +32768 8650 +32768 8448 +32768 9338 +32768 7641 +32768 8621 +32768 7403 +32768 8460 +32768 9441 +32768 9287 +32768 8351 +32768 8480 +32768 8895 +32768 8640 +32768 8674 +32768 9267 +32768 9576 +32768 7964 +32768 8608 +32768 9210 +32768 8353 +32768 8246 +32768 8869 +32768 8758 +32768 7760 +32768 8168 +32768 9177 +32768 8778 +32768 8894 +32768 9083 +32768 8883 +32768 9602 +32768 8051 +32768 8342 +32768 9545 +32768 7877 +32768 7335 +32768 8254 +32768 8780 +32768 8649 +32768 9491 +32768 8269 +32768 8160 +32768 8859 +32768 8622 +32768 9386 +32768 8329 diff --git a/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..e1b47803f4ace435f5b33124bba651eb0fe95218 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1898.59 +Mediana = 1836 +Variancia = 102097.07 +Desvio Padrao = 319.53 +Coef. Variacao = 0.17 +Min = 1668 +Max = 4105 +Esq, Dir. = 1850.6135 , 1946.5698 diff --git a/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..c7d557c385d486066515a790b8ea2cc707bcece2 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/4096-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +4096 1875 +4096 2017 +4096 1866 +4096 1885 +4096 1894 +4096 1780 +4096 1853 +4096 1734 +4096 1825 +4096 1883 +4096 1697 +4096 3076 +4096 1795 +4096 1798 +4096 1794 +4096 1755 +4096 1933 +4096 1799 +4096 1755 +4096 1855 +4096 1668 +4096 1771 +4096 1777 +4096 1750 +4096 1919 +4096 1950 +4096 1839 +4096 1764 +4096 1810 +4096 1892 +4096 1774 +4096 1815 +4096 2002 +4096 1764 +4096 1803 +4096 1755 +4096 1846 +4096 1843 +4096 1859 +4096 1814 +4096 1908 +4096 1781 +4096 2029 +4096 1870 +4096 1984 +4096 1836 +4096 1715 +4096 1845 +4096 1734 +4096 1760 +4096 1881 +4096 1904 +4096 1994 +4096 1809 +4096 1934 +4096 1971 +4096 1955 +4096 1701 +4096 1833 +4096 1923 +4096 1822 +4096 1966 +4096 3917 +4096 1906 +4096 1832 +4096 1879 +4096 1836 +4096 1876 +4096 1982 +4096 1834 +4096 1969 +4096 1854 +4096 1823 +4096 2064 +4096 1725 +4096 1866 +4096 1819 +4096 2230 +4096 2492 +4096 1743 +4096 1833 +4096 1848 +4096 1892 +4096 1887 +4096 2245 +4096 1787 +4096 1806 +4096 1841 +4096 2013 +4096 1927 +4096 1765 +4096 1723 +4096 1926 +4096 1776 +4096 2038 +4096 1747 +4096 1789 +4096 1803 +4096 1704 +4096 1675 +4096 1877 +4096 1780 +4096 1812 +4096 1820 +4096 1863 +4096 1761 +4096 1803 +4096 1973 +4096 1823 +4096 1676 +4096 1881 +4096 1693 +4096 4105 +4096 1738 +4096 1841 +4096 1789 +4096 1939 +4096 1930 +4096 1834 +4096 1782 diff --git a/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..aa4b294917483512f9b5fa4b71b288a42d63df96 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 1616.2 +Mediana = 1604.5 +Variancia = 6865.05 +Desvio Padrao = 82.86 +Coef. Variacao = 0.05 +Min = 1474 +Max = 1933 +Esq, Dir. = 1603.7589 , 1628.6411 diff --git a/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..950f5f822cf5e6365823022fa24e64a14e884bcf --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/512-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +512 1614 +512 1795 +512 1614 +512 1648 +512 1647 +512 1548 +512 1636 +512 1534 +512 1607 +512 1641 +512 1498 +512 1553 +512 1585 +512 1591 +512 1697 +512 1515 +512 1701 +512 1566 +512 1540 +512 1665 +512 1597 +512 1565 +512 1576 +512 1543 +512 1666 +512 1774 +512 1613 +512 1536 +512 1575 +512 1726 +512 1568 +512 1584 +512 1697 +512 1538 +512 1587 +512 1548 +512 1621 +512 1551 +512 1594 +512 1593 +512 1688 +512 1580 +512 1770 +512 1700 +512 1660 +512 1617 +512 1502 +512 1622 +512 1523 +512 1526 +512 1637 +512 1673 +512 1666 +512 1614 +512 1706 +512 1729 +512 1701 +512 1491 +512 1602 +512 1773 +512 1620 +512 1673 +512 1598 +512 1699 +512 1639 +512 1633 +512 1517 +512 1612 +512 1730 +512 1597 +512 1731 +512 1614 +512 1583 +512 1724 +512 1508 +512 1734 +512 1570 +512 1530 +512 1571 +512 1523 +512 1612 +512 1593 +512 1617 +512 1785 +512 1752 +512 1521 +512 1585 +512 1624 +512 1798 +512 1695 +512 1547 +512 1495 +512 1695 +512 1617 +512 1783 +512 1514 +512 1556 +512 1598 +512 1478 +512 1491 +512 1631 +512 1557 +512 1524 +512 1582 +512 1615 +512 1557 +512 1597 +512 1933 +512 1617 +512 1474 +512 1626 +512 1477 +512 1589 +512 1657 +512 1587 +512 1569 +512 1709 +512 1703 +512 1589 +512 1562 diff --git a/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..bb0766f01902f8b2918335a3fe80bedf15f8f306 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 2377.15 +Mediana = 1745.5 +Variancia = 753562.73 +Desvio Padrao = 868.08 +Coef. Variacao = 0.37 +Min = 1454 +Max = 3984 +Esq, Dir. = 2246.8044 , 2507.4956 diff --git a/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b7234d509890227e5af000e257b168f4ad5aad51 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/64-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +64 1580 +64 1771 +64 3065 +64 3455 +64 3517 +64 3266 +64 1596 +64 1458 +64 1588 +64 1627 +64 1511 +64 1501 +64 1563 +64 1544 +64 1515 +64 3076 +64 1678 +64 1544 +64 1514 +64 1647 +64 2941 +64 2988 +64 1522 +64 3538 +64 3536 +64 1689 +64 3583 +64 3181 +64 1562 +64 3873 +64 1520 +64 3685 +64 1564 +64 3142 +64 2230 +64 1522 +64 2991 +64 3188 +64 1550 +64 2938 +64 1608 +64 1520 +64 1777 +64 3480 +64 3053 +64 1591 +64 1486 +64 1596 +64 1512 +64 2903 +64 3366 +64 3079 +64 3443 +64 1591 +64 3005 +64 1625 +64 3279 +64 1476 +64 3088 +64 1589 +64 1582 +64 1641 +64 1565 +64 1536 +64 3386 +64 1595 +64 3177 +64 2525 +64 1683 +64 3582 +64 1720 +64 1506 +64 3224 +64 3486 +64 2903 +64 3262 +64 3563 +64 1506 +64 1541 +64 1500 +64 1589 +64 3132 +64 3984 +64 1565 +64 1585 +64 3404 +64 3010 +64 1497 +64 1678 +64 2928 +64 1523 +64 1484 +64 1512 +64 1531 +64 1509 +64 2865 +64 3526 +64 1583 +64 2855 +64 2846 +64 3797 +64 3463 +64 2992 +64 3163 +64 3502 +64 3355 +64 1567 +64 1637 +64 1566 +64 3081 +64 3727 +64 3120 +64 1573 +64 2917 +64 3385 +64 1454 +64 1677 +64 3374 +64 3447 +64 1546 diff --git a/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..e275b717bf4264251b7b86912aae29c963c6ac15 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 28076.81 +Mediana = 28276.5 +Variancia = 5278237.74 +Desvio Padrao = 2297.44 +Coef. Variacao = 0.08 +Min = 21361 +Max = 32168 +Esq, Dir. = 27731.8385 , 28421.7782 diff --git a/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..3c5c9627e992eb66a869d1c001df9d6cd95e3e10 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/65536-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +65536 30315 +65536 28704 +65536 24823 +65536 29551 +65536 28033 +65536 28279 +65536 26933 +65536 23886 +65536 26044 +65536 28882 +65536 28274 +65536 31459 +65536 24879 +65536 26389 +65536 28233 +65536 30437 +65536 28432 +65536 26696 +65536 28657 +65536 24359 +65536 30671 +65536 26928 +65536 27357 +65536 29095 +65536 25859 +65536 26054 +65536 28912 +65536 26690 +65536 28186 +65536 30238 +65536 31225 +65536 29570 +65536 28349 +65536 29052 +65536 31164 +65536 24391 +65536 26598 +65536 29790 +65536 26850 +65536 31025 +65536 25677 +65536 22423 +65536 26110 +65536 29069 +65536 29656 +65536 26697 +65536 24226 +65536 24384 +65536 24714 +65536 25318 +65536 29972 +65536 29052 +65536 25650 +65536 23584 +65536 29325 +65536 28880 +65536 29838 +65536 21361 +65536 29858 +65536 28524 +65536 31789 +65536 27307 +65536 28610 +65536 29436 +65536 28217 +65536 27439 +65536 28778 +65536 30777 +65536 30932 +65536 30212 +65536 26171 +65536 28054 +65536 26408 +65536 29721 +65536 28349 +65536 29840 +65536 27610 +65536 27210 +65536 28157 +65536 22753 +65536 26736 +65536 31133 +65536 31261 +65536 30403 +65536 30793 +65536 31566 +65536 25993 +65536 27478 +65536 28679 +65536 31772 +65536 24741 +65536 27980 +65536 29202 +65536 32168 +65536 29949 +65536 29640 +65536 31857 +65536 23820 +65536 27915 +65536 28292 +65536 27386 +65536 30588 +65536 26993 +65536 30540 +65536 31594 +65536 26219 +65536 26697 +65536 27105 +65536 26988 +65536 25142 +65536 26942 +65536 30039 +65536 30572 +65536 30038 +65536 29825 +65536 25754 +65536 27937 +65536 26947 +65536 30017 +65536 27159 diff --git a/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.R b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..a0ca6d3d42cce9237846129cb463c806f498a8f7 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.R @@ -0,0 +1,8 @@ +Media = 2433.85 +Mediana = 2251 +Variancia = 549691.29 +Desvio Padrao = 741.41 +Coef. Variacao = 0.3 +Min = 2039 +Max = 5713 +Esq, Dir. = 2322.5241 , 2545.1759 diff --git a/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.res b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..61bd7e1de173b5c62070e185f7541d7a64def8dc --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/8192-linear248-MaxGraphSQL.res @@ -0,0 +1,120 @@ +8192 5649 +8192 2463 +8192 2102 +8192 2303 +8192 2316 +8192 2262 +8192 2287 +8192 2110 +8192 2222 +8192 2322 +8192 2242 +8192 2267 +8192 2180 +8192 2231 +8192 2095 +8192 2154 +8192 2370 +8192 2213 +8192 4414 +8192 2255 +8192 2049 +8192 2156 +8192 4848 +8192 2116 +8192 2288 +8192 2400 +8192 2244 +8192 2156 +8192 2277 +8192 2311 +8192 4898 +8192 2218 +8192 2291 +8192 2169 +8192 2168 +8192 2137 +8192 2245 +8192 2257 +8192 2270 +8192 2188 +8192 2301 +8192 2156 +8192 5102 +8192 2297 +8192 2481 +8192 2297 +8192 2078 +8192 2235 +8192 2098 +8192 2150 +8192 2263 +8192 2296 +8192 2397 +8192 2176 +8192 2350 +8192 2414 +8192 2391 +8192 2043 +8192 2252 +8192 2258 +8192 5337 +8192 2381 +8192 2338 +8192 2217 +8192 2228 +8192 2285 +8192 2224 +8192 2280 +8192 2397 +8192 2215 +8192 2408 +8192 2298 +8192 2254 +8192 2405 +8192 2115 +8192 2256 +8192 2217 +8192 2170 +8192 2143 +8192 2107 +8192 2250 +8192 2280 +8192 2302 +8192 2196 +8192 2222 +8192 2234 +8192 2221 +8192 2279 +8192 2461 +8192 2302 +8192 2155 +8192 2162 +8192 2382 +8192 5713 +8192 2162 +8192 2154 +8192 2215 +8192 2186 +8192 2073 +8192 2046 +8192 2276 +8192 2201 +8192 2175 +8192 2230 +8192 2315 +8192 2157 +8192 2203 +8192 2391 +8192 5206 +8192 2039 +8192 2253 +8192 2089 +8192 2368 +8192 2111 +8192 2281 +8192 2189 +8192 2380 +8192 2311 +8192 2244 +8192 2195 diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run1.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..3ea74574dc6efd74b8f5cc7bb4d228e466ca6b92 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2081ms) + ✓ MaxGraphSQL;n=32 (1558ms) + ✓ MaxGraphSQL;n=64 (1541ms) + ✓ MaxGraphSQL;n=128 (1560ms) + ✓ MaxGraphSQL;n=256 (1568ms) + ✓ MaxGraphSQL;n=512 (1571ms) + ✓ MaxGraphSQL;n=1024 (1951ms) + ✓ MaxGraphSQL;n=2048 (3192ms) + ✓ MaxGraphSQL;n=4096 (2492ms) + ✓ MaxGraphSQL;n=8192 (2143ms) + ✓ MaxGraphSQL;n=16384 (3514ms) + ✓ MaxGraphSQL;n=32768 (8621ms) + ✓ MaxGraphSQL;n=65536 (28157ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run10.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..1abaf24d50355752d81164a9d566dec145fccb85 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run10.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2115ms) + ✓ MaxGraphSQL;n=32 (1992ms) + ✓ MaxGraphSQL;n=64 (2903ms) + ✓ MaxGraphSQL;n=128 (1706ms) + ✓ MaxGraphSQL;n=256 (1509ms) + ✓ MaxGraphSQL;n=512 (1508ms) + ✓ MaxGraphSQL;n=1024 (1522ms) + ✓ MaxGraphSQL;n=2048 (1598ms) + ✓ MaxGraphSQL;n=4096 (1725ms) + ✓ MaxGraphSQL;n=8192 (2115ms) + ✓ MaxGraphSQL;n=16384 (3503ms) + ✓ MaxGraphSQL;n=32768 (8650ms) + ✓ MaxGraphSQL;n=65536 (28349ms) + + + 13 passing (60s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run101.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run101.test new file mode 100644 index 0000000000000000000000000000000000000000..cb3bacb297a43cbc5b648a06f5d1802d33182aa6 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run101.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2119ms) + ✓ MaxGraphSQL;n=32 (1575ms) + ✓ MaxGraphSQL;n=64 (1566ms) + ✓ MaxGraphSQL;n=128 (1584ms) + ✓ MaxGraphSQL;n=256 (1600ms) + ✓ MaxGraphSQL;n=512 (1617ms) + ✓ MaxGraphSQL;n=1024 (1595ms) + ✓ MaxGraphSQL;n=2048 (1677ms) + ✓ MaxGraphSQL;n=4096 (1823ms) + ✓ MaxGraphSQL;n=8192 (5206ms) + ✓ MaxGraphSQL;n=16384 (3675ms) + ✓ MaxGraphSQL;n=32768 (7877ms) + ✓ MaxGraphSQL;n=65536 (26988ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run102.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run102.test new file mode 100644 index 0000000000000000000000000000000000000000..806e40bf3507b2c10d4862f2ebd196807c6212c7 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run102.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2058ms) + ✓ MaxGraphSQL;n=32 (1964ms) + ✓ MaxGraphSQL;n=64 (2846ms) + ✓ MaxGraphSQL;n=128 (1670ms) + ✓ MaxGraphSQL;n=256 (1512ms) + ✓ MaxGraphSQL;n=512 (1491ms) + ✓ MaxGraphSQL;n=1024 (1509ms) + ✓ MaxGraphSQL;n=2048 (1569ms) + ✓ MaxGraphSQL;n=4096 (1675ms) + ✓ MaxGraphSQL;n=8192 (2046ms) + ✓ MaxGraphSQL;n=16384 (3562ms) + ✓ MaxGraphSQL;n=32768 (9177ms) + ✓ MaxGraphSQL;n=65536 (28292ms) + + + 13 passing (60s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run103.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run103.test new file mode 100644 index 0000000000000000000000000000000000000000..616478c1c45deddad1a69dc96f3ce047be26f0d3 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run103.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2171ms) + ✓ MaxGraphSQL;n=32 (2221ms) + ✓ MaxGraphSQL;n=64 (3727ms) + ✓ MaxGraphSQL;n=128 (1949ms) + ✓ MaxGraphSQL;n=256 (1618ms) + ✓ MaxGraphSQL;n=512 (1626ms) + ✓ MaxGraphSQL;n=1024 (1645ms) + ✓ MaxGraphSQL;n=2048 (1732ms) + ✓ MaxGraphSQL;n=4096 (1881ms) + ✓ MaxGraphSQL;n=8192 (2253ms) + ✓ MaxGraphSQL;n=16384 (3535ms) + ✓ MaxGraphSQL;n=32768 (8254ms) + ✓ MaxGraphSQL;n=65536 (26942ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run104.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run104.test new file mode 100644 index 0000000000000000000000000000000000000000..1d0b91368b39894125239c7e077bf6cb6a2677a1 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run104.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1997ms) + ✓ MaxGraphSQL;n=32 (1943ms) + ✓ MaxGraphSQL;n=64 (2941ms) + ✓ MaxGraphSQL;n=128 (1553ms) + ✓ MaxGraphSQL;n=256 (1484ms) + ✓ MaxGraphSQL;n=512 (1597ms) + ✓ MaxGraphSQL;n=1024 (1480ms) + ✓ MaxGraphSQL;n=2048 (1539ms) + ✓ MaxGraphSQL;n=4096 (1668ms) + ✓ MaxGraphSQL;n=8192 (2049ms) + ✓ MaxGraphSQL;n=16384 (3296ms) + ✓ MaxGraphSQL;n=32768 (8101ms) + ✓ MaxGraphSQL;n=65536 (30671ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run105.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run105.test new file mode 100644 index 0000000000000000000000000000000000000000..6031716577921c866ae1f7906ee4ba507408dea9 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run105.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2271ms) + ✓ MaxGraphSQL;n=32 (2205ms) + ✓ MaxGraphSQL;n=64 (3262ms) + ✓ MaxGraphSQL;n=128 (2108ms) + ✓ MaxGraphSQL;n=256 (1711ms) + ✓ MaxGraphSQL;n=512 (1734ms) + ✓ MaxGraphSQL;n=1024 (1762ms) + ✓ MaxGraphSQL;n=2048 (1829ms) + ✓ MaxGraphSQL;n=4096 (1866ms) + ✓ MaxGraphSQL;n=8192 (2256ms) + ✓ MaxGraphSQL;n=16384 (3574ms) + ✓ MaxGraphSQL;n=32768 (8448ms) + ✓ MaxGraphSQL;n=65536 (29840ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run106.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run106.test new file mode 100644 index 0000000000000000000000000000000000000000..a69e511afb8e694f081e7d4fb42f7490907c5bbe --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run106.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2222ms) + ✓ MaxGraphSQL;n=32 (2225ms) + ✓ MaxGraphSQL;n=64 (3386ms) + ✓ MaxGraphSQL;n=128 (2051ms) + ✓ MaxGraphSQL;n=256 (1686ms) + ✓ MaxGraphSQL;n=512 (1639ms) + ✓ MaxGraphSQL;n=1024 (1693ms) + ✓ MaxGraphSQL;n=2048 (1705ms) + ✓ MaxGraphSQL;n=4096 (1832ms) + ✓ MaxGraphSQL;n=8192 (2228ms) + ✓ MaxGraphSQL;n=16384 (3630ms) + ✓ MaxGraphSQL;n=32768 (8726ms) + ✓ MaxGraphSQL;n=65536 (28217ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run107.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run107.test new file mode 100644 index 0000000000000000000000000000000000000000..3feb4343d5357542c7fbb8fccb91b2543917b49c --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run107.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2162ms) + ✓ MaxGraphSQL;n=32 (2143ms) + ✓ MaxGraphSQL;n=64 (3266ms) + ✓ MaxGraphSQL;n=128 (1706ms) + ✓ MaxGraphSQL;n=256 (1566ms) + ✓ MaxGraphSQL;n=512 (1548ms) + ✓ MaxGraphSQL;n=1024 (1562ms) + ✓ MaxGraphSQL;n=2048 (1627ms) + ✓ MaxGraphSQL;n=4096 (1780ms) + ✓ MaxGraphSQL;n=8192 (2262ms) + ✓ MaxGraphSQL;n=16384 (3595ms) + ✓ MaxGraphSQL;n=32768 (8659ms) + ✓ MaxGraphSQL;n=65536 (28279ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run108.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run108.test new file mode 100644 index 0000000000000000000000000000000000000000..03579652b7692fab0983876ef9ae8baec1ac3ca1 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run108.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2148ms) + ✓ MaxGraphSQL;n=32 (1581ms) + ✓ MaxGraphSQL;n=64 (1564ms) + ✓ MaxGraphSQL;n=128 (1593ms) + ✓ MaxGraphSQL;n=256 (1743ms) + ✓ MaxGraphSQL;n=512 (1697ms) + ✓ MaxGraphSQL;n=1024 (2194ms) + ✓ MaxGraphSQL;n=2048 (3238ms) + ✓ MaxGraphSQL;n=4096 (2002ms) + ✓ MaxGraphSQL;n=8192 (2291ms) + ✓ MaxGraphSQL;n=16384 (3639ms) + ✓ MaxGraphSQL;n=32768 (8128ms) + ✓ MaxGraphSQL;n=65536 (28349ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run109.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run109.test new file mode 100644 index 0000000000000000000000000000000000000000..1c157d0d54f6b273f500a40482226c5d1272dfcc --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run109.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2134ms) + ✓ MaxGraphSQL;n=32 (1534ms) + ✓ MaxGraphSQL;n=64 (1536ms) + ✓ MaxGraphSQL;n=128 (1561ms) + ✓ MaxGraphSQL;n=256 (1650ms) + ✓ MaxGraphSQL;n=512 (1699ms) + ✓ MaxGraphSQL;n=1024 (2446ms) + ✓ MaxGraphSQL;n=2048 (3817ms) + ✓ MaxGraphSQL;n=4096 (1906ms) + ✓ MaxGraphSQL;n=8192 (2217ms) + ✓ MaxGraphSQL;n=16384 (3668ms) + ✓ MaxGraphSQL;n=32768 (8551ms) + ✓ MaxGraphSQL;n=65536 (29436ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run11.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..148c63a0e6c0c1c23f5f8835e8e58d689e47c784 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run11.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2129ms) + ✓ MaxGraphSQL;n=32 (2088ms) + ✓ MaxGraphSQL;n=64 (3447ms) + ✓ MaxGraphSQL;n=128 (1721ms) + ✓ MaxGraphSQL;n=256 (1591ms) + ✓ MaxGraphSQL;n=512 (1589ms) + ✓ MaxGraphSQL;n=1024 (1609ms) + ✓ MaxGraphSQL;n=2048 (1698ms) + ✓ MaxGraphSQL;n=4096 (1834ms) + ✓ MaxGraphSQL;n=8192 (2244ms) + ✓ MaxGraphSQL;n=16384 (3746ms) + ✓ MaxGraphSQL;n=32768 (9386ms) + ✓ MaxGraphSQL;n=65536 (30017ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run110.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run110.test new file mode 100644 index 0000000000000000000000000000000000000000..fe8ebb9f8c347a22cf4b547b2b1a1db2bf9f4817 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run110.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2142ms) + ✓ MaxGraphSQL;n=32 (1597ms) + ✓ MaxGraphSQL;n=64 (1589ms) + ✓ MaxGraphSQL;n=128 (1674ms) + ✓ MaxGraphSQL;n=256 (1596ms) + ✓ MaxGraphSQL;n=512 (1773ms) + ✓ MaxGraphSQL;n=1024 (2579ms) + ✓ MaxGraphSQL;n=2048 (3432ms) + ✓ MaxGraphSQL;n=4096 (1923ms) + ✓ MaxGraphSQL;n=8192 (2258ms) + ✓ MaxGraphSQL;n=16384 (3585ms) + ✓ MaxGraphSQL;n=32768 (8276ms) + ✓ MaxGraphSQL;n=65536 (28524ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run111.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run111.test new file mode 100644 index 0000000000000000000000000000000000000000..d964559c29f45c851055f41b9775046276598c78 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run111.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2265ms) + ✓ MaxGraphSQL;n=32 (2264ms) + ✓ MaxGraphSQL;n=64 (3455ms) + ✓ MaxGraphSQL;n=128 (1906ms) + ✓ MaxGraphSQL;n=256 (1649ms) + ✓ MaxGraphSQL;n=512 (1648ms) + ✓ MaxGraphSQL;n=1024 (1672ms) + ✓ MaxGraphSQL;n=2048 (1743ms) + ✓ MaxGraphSQL;n=4096 (1885ms) + ✓ MaxGraphSQL;n=8192 (2303ms) + ✓ MaxGraphSQL;n=16384 (3768ms) + ✓ MaxGraphSQL;n=32768 (8858ms) + ✓ MaxGraphSQL;n=65536 (29551ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run112.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run112.test new file mode 100644 index 0000000000000000000000000000000000000000..e3226e6a116fa0dd689a2267e6c3303091bc8656 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run112.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2095ms) + ✓ MaxGraphSQL;n=32 (2062ms) + ✓ MaxGraphSQL;n=64 (3076ms) + ✓ MaxGraphSQL;n=128 (1779ms) + ✓ MaxGraphSQL;n=256 (1520ms) + ✓ MaxGraphSQL;n=512 (1515ms) + ✓ MaxGraphSQL;n=1024 (1534ms) + ✓ MaxGraphSQL;n=2048 (1600ms) + ✓ MaxGraphSQL;n=4096 (1755ms) + ✓ MaxGraphSQL;n=8192 (2154ms) + ✓ MaxGraphSQL;n=16384 (3553ms) + ✓ MaxGraphSQL;n=32768 (8025ms) + ✓ MaxGraphSQL;n=65536 (30437ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run113.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run113.test new file mode 100644 index 0000000000000000000000000000000000000000..9f35f59c22278cea9fffc967deababad48d4ea0d --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run113.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2208ms) + ✓ MaxGraphSQL;n=32 (2212ms) + ✓ MaxGraphSQL;n=64 (3563ms) + ✓ MaxGraphSQL;n=128 (1863ms) + ✓ MaxGraphSQL;n=256 (1556ms) + ✓ MaxGraphSQL;n=512 (1570ms) + ✓ MaxGraphSQL;n=1024 (1550ms) + ✓ MaxGraphSQL;n=2048 (1635ms) + ✓ MaxGraphSQL;n=4096 (1819ms) + ✓ MaxGraphSQL;n=8192 (2217ms) + ✓ MaxGraphSQL;n=16384 (3756ms) + ✓ MaxGraphSQL;n=32768 (9338ms) + ✓ MaxGraphSQL;n=65536 (27610ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run114.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run114.test new file mode 100644 index 0000000000000000000000000000000000000000..126e8884e24e3036a49b421d13c8fe743246ea21 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run114.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2313ms) + ✓ MaxGraphSQL;n=32 (1769ms) + ✓ MaxGraphSQL;n=64 (1777ms) + ✓ MaxGraphSQL;n=128 (1870ms) + ✓ MaxGraphSQL;n=256 (1749ms) + ✓ MaxGraphSQL;n=512 (1770ms) + ✓ MaxGraphSQL;n=1024 (1782ms) + ✓ MaxGraphSQL;n=2048 (1868ms) + ✓ MaxGraphSQL;n=4096 (2029ms) + ✓ MaxGraphSQL;n=8192 (5102ms) + ✓ MaxGraphSQL;n=16384 (4029ms) + ✓ MaxGraphSQL;n=32768 (8647ms) + ✓ MaxGraphSQL;n=65536 (26110ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run115.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run115.test new file mode 100644 index 0000000000000000000000000000000000000000..fdff9677bf5d4ea63dc5c46c56f41ceef4e89869 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run115.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2159ms) + ✓ MaxGraphSQL;n=32 (2130ms) + ✓ MaxGraphSQL;n=64 (3188ms) + ✓ MaxGraphSQL;n=128 (1801ms) + ✓ MaxGraphSQL;n=256 (1560ms) + ✓ MaxGraphSQL;n=512 (1551ms) + ✓ MaxGraphSQL;n=1024 (1565ms) + ✓ MaxGraphSQL;n=2048 (1634ms) + ✓ MaxGraphSQL;n=4096 (1843ms) + ✓ MaxGraphSQL;n=8192 (2257ms) + ✓ MaxGraphSQL;n=16384 (3715ms) + ✓ MaxGraphSQL;n=32768 (9571ms) + ✓ MaxGraphSQL;n=65536 (29790ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run116.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run116.test new file mode 100644 index 0000000000000000000000000000000000000000..3d1c7def5d97cb51e59bc6b08856ed1a78c65687 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run116.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2122ms) + ✓ MaxGraphSQL;n=32 (1567ms) + ✓ MaxGraphSQL;n=64 (1565ms) + ✓ MaxGraphSQL;n=128 (1579ms) + ✓ MaxGraphSQL;n=256 (1592ms) + ✓ MaxGraphSQL;n=512 (1785ms) + ✓ MaxGraphSQL;n=1024 (2604ms) + ✓ MaxGraphSQL;n=2048 (3591ms) + ✓ MaxGraphSQL;n=4096 (1887ms) + ✓ MaxGraphSQL;n=8192 (2196ms) + ✓ MaxGraphSQL;n=16384 (3594ms) + ✓ MaxGraphSQL;n=32768 (8351ms) + ✓ MaxGraphSQL;n=65536 (30403ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run117.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run117.test new file mode 100644 index 0000000000000000000000000000000000000000..fd0f8460658a212f881f5157c3bc21e6ecf0c740 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run117.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2155ms) + ✓ MaxGraphSQL;n=32 (2116ms) + ✓ MaxGraphSQL;n=64 (3142ms) + ✓ MaxGraphSQL;n=128 (1791ms) + ✓ MaxGraphSQL;n=256 (1542ms) + ✓ MaxGraphSQL;n=512 (1538ms) + ✓ MaxGraphSQL;n=1024 (1550ms) + ✓ MaxGraphSQL;n=2048 (1623ms) + ✓ MaxGraphSQL;n=4096 (1764ms) + ✓ MaxGraphSQL;n=8192 (2169ms) + ✓ MaxGraphSQL;n=16384 (3545ms) + ✓ MaxGraphSQL;n=32768 (8690ms) + ✓ MaxGraphSQL;n=65536 (29052ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run118.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run118.test new file mode 100644 index 0000000000000000000000000000000000000000..b3ba7a98aa1f2f22b1c62c591b9a7609d9c95bef --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run118.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2149ms) + ✓ MaxGraphSQL;n=32 (2022ms) + ✓ MaxGraphSQL;n=64 (3088ms) + ✓ MaxGraphSQL;n=128 (1777ms) + ✓ MaxGraphSQL;n=256 (1612ms) + ✓ MaxGraphSQL;n=512 (1602ms) + ✓ MaxGraphSQL;n=1024 (1623ms) + ✓ MaxGraphSQL;n=2048 (1685ms) + ✓ MaxGraphSQL;n=4096 (1833ms) + ✓ MaxGraphSQL;n=8192 (2252ms) + ✓ MaxGraphSQL;n=16384 (3670ms) + ✓ MaxGraphSQL;n=32768 (8613ms) + ✓ MaxGraphSQL;n=65536 (29858ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run119.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run119.test new file mode 100644 index 0000000000000000000000000000000000000000..3d16de29c91d02be642a27a245ac0c78f3a432f4 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run119.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2309ms) + ✓ MaxGraphSQL;n=32 (2422ms) + ✓ MaxGraphSQL;n=64 (3526ms) + ✓ MaxGraphSQL;n=128 (1606ms) + ✓ MaxGraphSQL;n=256 (1555ms) + ✓ MaxGraphSQL;n=512 (1556ms) + ✓ MaxGraphSQL;n=1024 (1565ms) + ✓ MaxGraphSQL;n=2048 (1635ms) + ✓ MaxGraphSQL;n=4096 (1789ms) + ✓ MaxGraphSQL;n=8192 (2215ms) + ✓ MaxGraphSQL;n=16384 (3763ms) + ✓ MaxGraphSQL;n=32768 (8758ms) + ✓ MaxGraphSQL;n=65536 (31857ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run12.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..ce03587588ba90bebc7fd2287ea8b513b9956380 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run12.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2244ms) + ✓ MaxGraphSQL;n=32 (2214ms) + ✓ MaxGraphSQL;n=64 (3279ms) + ✓ MaxGraphSQL;n=128 (2005ms) + ✓ MaxGraphSQL;n=256 (1743ms) + ✓ MaxGraphSQL;n=512 (1701ms) + ✓ MaxGraphSQL;n=1024 (1681ms) + ✓ MaxGraphSQL;n=2048 (1746ms) + ✓ MaxGraphSQL;n=4096 (1955ms) + ✓ MaxGraphSQL;n=8192 (2391ms) + ✓ MaxGraphSQL;n=16384 (3894ms) + ✓ MaxGraphSQL;n=32768 (9608ms) + ✓ MaxGraphSQL;n=65536 (29838ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run120.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run120.test new file mode 100644 index 0000000000000000000000000000000000000000..f315227d3ad6048994cc24584d994001bb047979 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run120.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2156ms) + ✓ MaxGraphSQL;n=32 (1822ms) + ✓ MaxGraphSQL;n=64 (2525ms) + ✓ MaxGraphSQL;n=128 (3386ms) + ✓ MaxGraphSQL;n=256 (1665ms) + ✓ MaxGraphSQL;n=512 (1612ms) + ✓ MaxGraphSQL;n=1024 (1630ms) + ✓ MaxGraphSQL;n=2048 (1746ms) + ✓ MaxGraphSQL;n=4096 (1876ms) + ✓ MaxGraphSQL;n=8192 (2280ms) + ✓ MaxGraphSQL;n=16384 (3625ms) + ✓ MaxGraphSQL;n=32768 (8442ms) + ✓ MaxGraphSQL;n=65536 (30777ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run121.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run121.test new file mode 100644 index 0000000000000000000000000000000000000000..36582219d7b55aa1c66bf7ba7d01f91f8a12ac97 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run121.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2159ms) + ✓ MaxGraphSQL;n=32 (1610ms) + ✓ MaxGraphSQL;n=64 (1589ms) + ✓ MaxGraphSQL;n=128 (1590ms) + ✓ MaxGraphSQL;n=256 (1598ms) + ✓ MaxGraphSQL;n=512 (1612ms) + ✓ MaxGraphSQL;n=1024 (1621ms) + ✓ MaxGraphSQL;n=2048 (1704ms) + ✓ MaxGraphSQL;n=4096 (1833ms) + ✓ MaxGraphSQL;n=8192 (2250ms) + ✓ MaxGraphSQL;n=16384 (3664ms) + ✓ MaxGraphSQL;n=32768 (8460ms) + ✓ MaxGraphSQL;n=65536 (26736ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run122.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run122.test new file mode 100644 index 0000000000000000000000000000000000000000..bdbcc2dfeba625f95490785d4b5824aa38fccebd --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run122.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2215ms) + ✓ MaxGraphSQL;n=32 (1666ms) + ✓ MaxGraphSQL;n=64 (1677ms) + ✓ MaxGraphSQL;n=128 (1684ms) + ✓ MaxGraphSQL;n=256 (1696ms) + ✓ MaxGraphSQL;n=512 (1709ms) + ✓ MaxGraphSQL;n=1024 (1714ms) + ✓ MaxGraphSQL;n=2048 (1807ms) + ✓ MaxGraphSQL;n=4096 (1939ms) + ✓ MaxGraphSQL;n=8192 (2380ms) + ✓ MaxGraphSQL;n=16384 (3896ms) + ✓ MaxGraphSQL;n=32768 (8859ms) + ✓ MaxGraphSQL;n=65536 (27937ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run123.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run123.test new file mode 100644 index 0000000000000000000000000000000000000000..61d8d2e159331e52c77796a50be05806805bf812 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run123.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2017ms) + ✓ MaxGraphSQL;n=32 (1528ms) + ✓ MaxGraphSQL;n=64 (1500ms) + ✓ MaxGraphSQL;n=128 (1504ms) + ✓ MaxGraphSQL;n=256 (1518ms) + ✓ MaxGraphSQL;n=512 (1523ms) + ✓ MaxGraphSQL;n=1024 (1546ms) + ✓ MaxGraphSQL;n=2048 (1612ms) + ✓ MaxGraphSQL;n=4096 (1743ms) + ✓ MaxGraphSQL;n=8192 (2107ms) + ✓ MaxGraphSQL;n=16384 (3341ms) + ✓ MaxGraphSQL;n=32768 (7403ms) + ✓ MaxGraphSQL;n=65536 (22753ms) + + + 13 passing (50s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run124.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run124.test new file mode 100644 index 0000000000000000000000000000000000000000..5897cf8e8fafd1ebdcd3c8a3181672aa66dc1481 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run124.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2018ms) + ✓ MaxGraphSQL;n=32 (1494ms) + ✓ MaxGraphSQL;n=64 (1476ms) + ✓ MaxGraphSQL;n=128 (1471ms) + ✓ MaxGraphSQL;n=256 (1489ms) + ✓ MaxGraphSQL;n=512 (1491ms) + ✓ MaxGraphSQL;n=1024 (1530ms) + ✓ MaxGraphSQL;n=2048 (1584ms) + ✓ MaxGraphSQL;n=4096 (1701ms) + ✓ MaxGraphSQL;n=8192 (2043ms) + ✓ MaxGraphSQL;n=16384 (3199ms) + ✓ MaxGraphSQL;n=32768 (7004ms) + ✓ MaxGraphSQL;n=65536 (21361ms) + + + 13 passing (48s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run125.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run125.test new file mode 100644 index 0000000000000000000000000000000000000000..39d29a0b843ffab3d9110cb032e5acb81eab9c8b --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run125.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2023ms) + ✓ MaxGraphSQL;n=32 (1544ms) + ✓ MaxGraphSQL;n=64 (1596ms) + ✓ MaxGraphSQL;n=128 (1624ms) + ✓ MaxGraphSQL;n=256 (1622ms) + ✓ MaxGraphSQL;n=512 (1636ms) + ✓ MaxGraphSQL;n=1024 (1666ms) + ✓ MaxGraphSQL;n=2048 (1721ms) + ✓ MaxGraphSQL;n=4096 (1853ms) + ✓ MaxGraphSQL;n=8192 (2287ms) + ✓ MaxGraphSQL;n=16384 (3734ms) + ✓ MaxGraphSQL;n=32768 (8616ms) + ✓ MaxGraphSQL;n=65536 (26933ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run126.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run126.test new file mode 100644 index 0000000000000000000000000000000000000000..6bd934beeb4743bde04b8d70339c2e5baaf03d45 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run126.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2174ms) + ✓ MaxGraphSQL;n=32 (1561ms) + ✓ MaxGraphSQL;n=64 (1562ms) + ✓ MaxGraphSQL;n=128 (1561ms) + ✓ MaxGraphSQL;n=256 (1567ms) + ✓ MaxGraphSQL;n=512 (1575ms) + ✓ MaxGraphSQL;n=1024 (1587ms) + ✓ MaxGraphSQL;n=2048 (1663ms) + ✓ MaxGraphSQL;n=4096 (1810ms) + ✓ MaxGraphSQL;n=8192 (2277ms) + ✓ MaxGraphSQL;n=16384 (3791ms) + ✓ MaxGraphSQL;n=32768 (8838ms) + ✓ MaxGraphSQL;n=65536 (28186ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run127.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run127.test new file mode 100644 index 0000000000000000000000000000000000000000..889c580d94ded8a391a3befeab5a28f04c78feda --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run127.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2287ms) + ✓ MaxGraphSQL;n=32 (1704ms) + ✓ MaxGraphSQL;n=64 (1678ms) + ✓ MaxGraphSQL;n=128 (1678ms) + ✓ MaxGraphSQL;n=256 (1688ms) + ✓ MaxGraphSQL;n=512 (1701ms) + ✓ MaxGraphSQL;n=1024 (1723ms) + ✓ MaxGraphSQL;n=2048 (1841ms) + ✓ MaxGraphSQL;n=4096 (1933ms) + ✓ MaxGraphSQL;n=8192 (2370ms) + ✓ MaxGraphSQL;n=16384 (3939ms) + ✓ MaxGraphSQL;n=32768 (9080ms) + ✓ MaxGraphSQL;n=65536 (28432ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run128.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run128.test new file mode 100644 index 0000000000000000000000000000000000000000..1e63895e6ceac1aa9b0b4b2168a264ed35d82d75 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run128.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2135ms) + ✓ MaxGraphSQL;n=32 (1606ms) + ✓ MaxGraphSQL;n=64 (1596ms) + ✓ MaxGraphSQL;n=128 (1603ms) + ✓ MaxGraphSQL;n=256 (1610ms) + ✓ MaxGraphSQL;n=512 (1622ms) + ✓ MaxGraphSQL;n=1024 (1636ms) + ✓ MaxGraphSQL;n=2048 (1719ms) + ✓ MaxGraphSQL;n=4096 (1845ms) + ✓ MaxGraphSQL;n=8192 (2235ms) + ✓ MaxGraphSQL;n=16384 (3587ms) + ✓ MaxGraphSQL;n=32768 (7945ms) + ✓ MaxGraphSQL;n=65536 (24384ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run129.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run129.test new file mode 100644 index 0000000000000000000000000000000000000000..a10b49e8e8dcd410e9d7d3556741ba1d1bdb2cc7 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run129.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2100ms) + ✓ MaxGraphSQL;n=32 (1617ms) + ✓ MaxGraphSQL;n=64 (1588ms) + ✓ MaxGraphSQL;n=128 (1592ms) + ✓ MaxGraphSQL;n=256 (1603ms) + ✓ MaxGraphSQL;n=512 (1607ms) + ✓ MaxGraphSQL;n=1024 (1627ms) + ✓ MaxGraphSQL;n=2048 (1703ms) + ✓ MaxGraphSQL;n=4096 (1825ms) + ✓ MaxGraphSQL;n=8192 (2222ms) + ✓ MaxGraphSQL;n=16384 (3608ms) + ✓ MaxGraphSQL;n=32768 (8233ms) + ✓ MaxGraphSQL;n=65536 (26044ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run13.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..55e1d05474ba7911ab2962da219e4ebf87047b0f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2030ms) + ✓ MaxGraphSQL;n=32 (2127ms) + ✓ MaxGraphSQL;n=64 (3463ms) + ✓ MaxGraphSQL;n=128 (1785ms) + ✓ MaxGraphSQL;n=256 (1586ms) + ✓ MaxGraphSQL;n=512 (1557ms) + ✓ MaxGraphSQL;n=1024 (1564ms) + ✓ MaxGraphSQL;n=2048 (1638ms) + ✓ MaxGraphSQL;n=4096 (1780ms) + ✓ MaxGraphSQL;n=8192 (2201ms) + ✓ MaxGraphSQL;n=16384 (3577ms) + ✓ MaxGraphSQL;n=32768 (8894ms) + ✓ MaxGraphSQL;n=65536 (30588ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run130.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run130.test new file mode 100644 index 0000000000000000000000000000000000000000..679b6d62396d9641e34837e70ea5328577e57190 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run130.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2131ms) + ✓ MaxGraphSQL;n=32 (1557ms) + ✓ MaxGraphSQL;n=64 (1544ms) + ✓ MaxGraphSQL;n=128 (1550ms) + ✓ MaxGraphSQL;n=256 (1555ms) + ✓ MaxGraphSQL;n=512 (1566ms) + ✓ MaxGraphSQL;n=1024 (1579ms) + ✓ MaxGraphSQL;n=2048 (1658ms) + ✓ MaxGraphSQL;n=4096 (1799ms) + ✓ MaxGraphSQL;n=8192 (2213ms) + ✓ MaxGraphSQL;n=16384 (3638ms) + ✓ MaxGraphSQL;n=32768 (8451ms) + ✓ MaxGraphSQL;n=65536 (26696ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run131.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run131.test new file mode 100644 index 0000000000000000000000000000000000000000..209f8da3974a2bfd9a491df5faaac810cafb8005 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run131.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2077ms) + ✓ MaxGraphSQL;n=32 (1527ms) + ✓ MaxGraphSQL;n=64 (1511ms) + ✓ MaxGraphSQL;n=128 (1512ms) + ✓ MaxGraphSQL;n=256 (1525ms) + ✓ MaxGraphSQL;n=512 (1498ms) + ✓ MaxGraphSQL;n=1024 (1506ms) + ✓ MaxGraphSQL;n=2048 (1578ms) + ✓ MaxGraphSQL;n=4096 (1697ms) + ✓ MaxGraphSQL;n=8192 (2242ms) + ✓ MaxGraphSQL;n=16384 (3751ms) + ✓ MaxGraphSQL;n=32768 (8990ms) + ✓ MaxGraphSQL;n=65536 (28274ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run132.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run132.test new file mode 100644 index 0000000000000000000000000000000000000000..f165ec3e62481b6cbb277e573a05e6002cb005a6 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run132.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2106ms) + ✓ MaxGraphSQL;n=32 (1569ms) + ✓ MaxGraphSQL;n=64 (1546ms) + ✓ MaxGraphSQL;n=128 (1546ms) + ✓ MaxGraphSQL;n=256 (1556ms) + ✓ MaxGraphSQL;n=512 (1562ms) + ✓ MaxGraphSQL;n=1024 (1577ms) + ✓ MaxGraphSQL;n=2048 (1656ms) + ✓ MaxGraphSQL;n=4096 (1782ms) + ✓ MaxGraphSQL;n=8192 (2195ms) + ✓ MaxGraphSQL;n=16384 (3540ms) + ✓ MaxGraphSQL;n=32768 (8329ms) + ✓ MaxGraphSQL;n=65536 (27159ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run133.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run133.test new file mode 100644 index 0000000000000000000000000000000000000000..8958e4edc0949a20c02fcfff5d9d7eceb2a2ac07 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run133.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1948ms) + ✓ MaxGraphSQL;n=32 (1476ms) + ✓ MaxGraphSQL;n=64 (1454ms) + ✓ MaxGraphSQL;n=128 (1463ms) + ✓ MaxGraphSQL;n=256 (1501ms) + ✓ MaxGraphSQL;n=512 (1569ms) + ✓ MaxGraphSQL;n=1024 (1589ms) + ✓ MaxGraphSQL;n=2048 (1655ms) + ✓ MaxGraphSQL;n=4096 (1789ms) + ✓ MaxGraphSQL;n=8192 (2189ms) + ✓ MaxGraphSQL;n=16384 (3557ms) + ✓ MaxGraphSQL;n=32768 (8160ms) + ✓ MaxGraphSQL;n=65536 (25754ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run134.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run134.test new file mode 100644 index 0000000000000000000000000000000000000000..8f48c783faeca6eb2cab104f448b9bba6d0f093f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run134.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2063ms) + ✓ MaxGraphSQL;n=32 (1528ms) + ✓ MaxGraphSQL;n=64 (1512ms) + ✓ MaxGraphSQL;n=128 (1511ms) + ✓ MaxGraphSQL;n=256 (1517ms) + ✓ MaxGraphSQL;n=512 (1523ms) + ✓ MaxGraphSQL;n=1024 (1551ms) + ✓ MaxGraphSQL;n=2048 (1595ms) + ✓ MaxGraphSQL;n=4096 (1734ms) + ✓ MaxGraphSQL;n=8192 (2098ms) + ✓ MaxGraphSQL;n=16384 (3410ms) + ✓ MaxGraphSQL;n=32768 (7825ms) + ✓ MaxGraphSQL;n=65536 (24714ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run135.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run135.test new file mode 100644 index 0000000000000000000000000000000000000000..acb94312e723fc589fe6f4805808d9f57cd3bff8 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run135.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2247ms) + ✓ MaxGraphSQL;n=32 (1647ms) + ✓ MaxGraphSQL;n=64 (1625ms) + ✓ MaxGraphSQL;n=128 (1629ms) + ✓ MaxGraphSQL;n=256 (1646ms) + ✓ MaxGraphSQL;n=512 (1729ms) + ✓ MaxGraphSQL;n=1024 (1751ms) + ✓ MaxGraphSQL;n=2048 (1853ms) + ✓ MaxGraphSQL;n=4096 (1971ms) + ✓ MaxGraphSQL;n=8192 (2414ms) + ✓ MaxGraphSQL;n=16384 (3998ms) + ✓ MaxGraphSQL;n=32768 (9270ms) + ✓ MaxGraphSQL;n=65536 (28880ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run136.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run136.test new file mode 100644 index 0000000000000000000000000000000000000000..4c4804ae3c90504f0360b2071cc66dc85a6fb93d --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run136.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2173ms) + ✓ MaxGraphSQL;n=32 (1614ms) + ✓ MaxGraphSQL;n=64 (1591ms) + ✓ MaxGraphSQL;n=128 (1603ms) + ✓ MaxGraphSQL;n=256 (1595ms) + ✓ MaxGraphSQL;n=512 (1614ms) + ✓ MaxGraphSQL;n=1024 (1607ms) + ✓ MaxGraphSQL;n=2048 (1681ms) + ✓ MaxGraphSQL;n=4096 (1809ms) + ✓ MaxGraphSQL;n=8192 (2176ms) + ✓ MaxGraphSQL;n=16384 (3472ms) + ✓ MaxGraphSQL;n=32768 (7689ms) + ✓ MaxGraphSQL;n=65536 (23584ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run137.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run137.test new file mode 100644 index 0000000000000000000000000000000000000000..37c8a563a347a2fe302cd2cedbcdbf0b93bab3c8 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run137.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2112ms) + ✓ MaxGraphSQL;n=32 (1661ms) + ✓ MaxGraphSQL;n=64 (1647ms) + ✓ MaxGraphSQL;n=128 (1646ms) + ✓ MaxGraphSQL;n=256 (1621ms) + ✓ MaxGraphSQL;n=512 (1665ms) + ✓ MaxGraphSQL;n=1024 (1678ms) + ✓ MaxGraphSQL;n=2048 (1741ms) + ✓ MaxGraphSQL;n=4096 (1855ms) + ✓ MaxGraphSQL;n=8192 (2255ms) + ✓ MaxGraphSQL;n=16384 (3537ms) + ✓ MaxGraphSQL;n=32768 (7892ms) + ✓ MaxGraphSQL;n=65536 (24359ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run138.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run138.test new file mode 100644 index 0000000000000000000000000000000000000000..e44cf26edd484974a66459910cfa268614389fb9 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run138.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2252ms) + ✓ MaxGraphSQL;n=32 (1679ms) + ✓ MaxGraphSQL;n=64 (1689ms) + ✓ MaxGraphSQL;n=128 (1675ms) + ✓ MaxGraphSQL;n=256 (1707ms) + ✓ MaxGraphSQL;n=512 (1774ms) + ✓ MaxGraphSQL;n=1024 (1709ms) + ✓ MaxGraphSQL;n=2048 (1777ms) + ✓ MaxGraphSQL;n=4096 (1950ms) + ✓ MaxGraphSQL;n=8192 (2400ms) + ✓ MaxGraphSQL;n=16384 (3751ms) + ✓ MaxGraphSQL;n=32768 (8353ms) + ✓ MaxGraphSQL;n=65536 (26054ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run139.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run139.test new file mode 100644 index 0000000000000000000000000000000000000000..3a6d6347cc0b58622b6e76080e60d42a61a34931 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run139.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2018ms) + ✓ MaxGraphSQL;n=32 (1514ms) + ✓ MaxGraphSQL;n=64 (1497ms) + ✓ MaxGraphSQL;n=128 (1510ms) + ✓ MaxGraphSQL;n=256 (1594ms) + ✓ MaxGraphSQL;n=512 (1624ms) + ✓ MaxGraphSQL;n=1024 (1628ms) + ✓ MaxGraphSQL;n=2048 (1715ms) + ✓ MaxGraphSQL;n=4096 (1841ms) + ✓ MaxGraphSQL;n=8192 (2279ms) + ✓ MaxGraphSQL;n=16384 (3708ms) + ✓ MaxGraphSQL;n=32768 (8674ms) + ✓ MaxGraphSQL;n=65536 (27478ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run14.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..8d80abd48ad88da5e95dd5936ca6a5651121e33c --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run14.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2285ms) + ✓ MaxGraphSQL;n=32 (2303ms) + ✓ MaxGraphSQL;n=64 (3536ms) + ✓ MaxGraphSQL;n=128 (1977ms) + ✓ MaxGraphSQL;n=256 (1685ms) + ✓ MaxGraphSQL;n=512 (1666ms) + ✓ MaxGraphSQL;n=1024 (1690ms) + ✓ MaxGraphSQL;n=2048 (1760ms) + ✓ MaxGraphSQL;n=4096 (1919ms) + ✓ MaxGraphSQL;n=8192 (2288ms) + ✓ MaxGraphSQL;n=16384 (3797ms) + ✓ MaxGraphSQL;n=32768 (9350ms) + ✓ MaxGraphSQL;n=65536 (25859ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run140.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run140.test new file mode 100644 index 0000000000000000000000000000000000000000..dc8bdfde9f47b2b033601cfb4dc457a6f5f4d40f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run140.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2004ms) + ✓ MaxGraphSQL;n=32 (1522ms) + ✓ MaxGraphSQL;n=64 (1512ms) + ✓ MaxGraphSQL;n=128 (1518ms) + ✓ MaxGraphSQL;n=256 (1685ms) + ✓ MaxGraphSQL;n=512 (1695ms) + ✓ MaxGraphSQL;n=1024 (1712ms) + ✓ MaxGraphSQL;n=2048 (1794ms) + ✓ MaxGraphSQL;n=4096 (1926ms) + ✓ MaxGraphSQL;n=8192 (2382ms) + ✓ MaxGraphSQL;n=16384 (3896ms) + ✓ MaxGraphSQL;n=32768 (9210ms) + ✓ MaxGraphSQL;n=65536 (29202ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run15.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..a33c985e058e13c6d3ac0a62969900331f7a6e81 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run15.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2306ms) + ✓ MaxGraphSQL;n=32 (2140ms) + ✓ MaxGraphSQL;n=64 (3079ms) + ✓ MaxGraphSQL;n=128 (2013ms) + ✓ MaxGraphSQL;n=256 (1687ms) + ✓ MaxGraphSQL;n=512 (1673ms) + ✓ MaxGraphSQL;n=1024 (1636ms) + ✓ MaxGraphSQL;n=2048 (1763ms) + ✓ MaxGraphSQL;n=4096 (1904ms) + ✓ MaxGraphSQL;n=8192 (2296ms) + ✓ MaxGraphSQL;n=16384 (3691ms) + ✓ MaxGraphSQL;n=32768 (8881ms) + ✓ MaxGraphSQL;n=65536 (29052ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run16.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..00316c54ab0ab943acc60ef8571b544bd25294bb --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run16.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2151ms) + ✓ MaxGraphSQL;n=32 (1591ms) + ✓ MaxGraphSQL;n=64 (1573ms) + ✓ MaxGraphSQL;n=128 (1667ms) + ✓ MaxGraphSQL;n=256 (1693ms) + ✓ MaxGraphSQL;n=512 (1589ms) + ✓ MaxGraphSQL;n=1024 (1603ms) + ✓ MaxGraphSQL;n=2048 (2147ms) + ✓ MaxGraphSQL;n=4096 (4105ms) + ✓ MaxGraphSQL;n=8192 (2368ms) + ✓ MaxGraphSQL;n=16384 (3669ms) + ✓ MaxGraphSQL;n=32768 (8649ms) + ✓ MaxGraphSQL;n=65536 (30572ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run17.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..22550ec33252fa410789c7f8f402b29f3715eafd --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run17.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2206ms) + ✓ MaxGraphSQL;n=32 (2364ms) + ✓ MaxGraphSQL;n=64 (3984ms) + ✓ MaxGraphSQL;n=128 (1817ms) + ✓ MaxGraphSQL;n=256 (1642ms) + ✓ MaxGraphSQL;n=512 (1617ms) + ✓ MaxGraphSQL;n=1024 (1655ms) + ✓ MaxGraphSQL;n=2048 (1652ms) + ✓ MaxGraphSQL;n=4096 (1892ms) + ✓ MaxGraphSQL;n=8192 (2302ms) + ✓ MaxGraphSQL;n=16384 (3744ms) + ✓ MaxGraphSQL;n=32768 (9287ms) + ✓ MaxGraphSQL;n=65536 (31261ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run18.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..df0649ecb30e31e5e97356c0e28805c857ac171e --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run18.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2293ms) + ✓ MaxGraphSQL;n=32 (2175ms) + ✓ MaxGraphSQL;n=64 (3502ms) + ✓ MaxGraphSQL;n=128 (1936ms) + ✓ MaxGraphSQL;n=256 (1628ms) + ✓ MaxGraphSQL;n=512 (1615ms) + ✓ MaxGraphSQL;n=1024 (1636ms) + ✓ MaxGraphSQL;n=2048 (1723ms) + ✓ MaxGraphSQL;n=4096 (1863ms) + ✓ MaxGraphSQL;n=8192 (2315ms) + ✓ MaxGraphSQL;n=16384 (3832ms) + ✓ MaxGraphSQL;n=32768 (9602ms) + ✓ MaxGraphSQL;n=65536 (31594ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run19.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..6dab338505244bfd5d2c844d49e74e47932455fc --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run19.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2062ms) + ✓ MaxGraphSQL;n=32 (2011ms) + ✓ MaxGraphSQL;n=64 (3065ms) + ✓ MaxGraphSQL;n=128 (1815ms) + ✓ MaxGraphSQL;n=256 (1579ms) + ✓ MaxGraphSQL;n=512 (1614ms) + ✓ MaxGraphSQL;n=1024 (1631ms) + ✓ MaxGraphSQL;n=2048 (1700ms) + ✓ MaxGraphSQL;n=4096 (1866ms) + ✓ MaxGraphSQL;n=8192 (2102ms) + ✓ MaxGraphSQL;n=16384 (3293ms) + ✓ MaxGraphSQL;n=32768 (7068ms) + ✓ MaxGraphSQL;n=65536 (24823ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run2.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..a9432b4f84500854adde1994c65c1fc5b03e7507 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2151ms) + ✓ MaxGraphSQL;n=32 (2065ms) + ✓ MaxGraphSQL;n=64 (2988ms) + ✓ MaxGraphSQL;n=128 (1863ms) + ✓ MaxGraphSQL;n=256 (1579ms) + ✓ MaxGraphSQL;n=512 (1565ms) + ✓ MaxGraphSQL;n=1024 (1572ms) + ✓ MaxGraphSQL;n=2048 (1644ms) + ✓ MaxGraphSQL;n=4096 (1771ms) + ✓ MaxGraphSQL;n=8192 (2156ms) + ✓ MaxGraphSQL;n=16384 (3479ms) + ✓ MaxGraphSQL;n=32768 (8470ms) + ✓ MaxGraphSQL;n=65536 (26928ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run20.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..d9f80db448a0d312b339197a5250e0abfbad3326 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2078ms) + ✓ MaxGraphSQL;n=32 (1519ms) + ✓ MaxGraphSQL;n=64 (1501ms) + ✓ MaxGraphSQL;n=128 (1506ms) + ✓ MaxGraphSQL;n=256 (1537ms) + ✓ MaxGraphSQL;n=512 (1553ms) + ✓ MaxGraphSQL;n=1024 (1683ms) + ✓ MaxGraphSQL;n=2048 (2375ms) + ✓ MaxGraphSQL;n=4096 (3076ms) + ✓ MaxGraphSQL;n=8192 (2267ms) + ✓ MaxGraphSQL;n=16384 (3771ms) + ✓ MaxGraphSQL;n=32768 (9112ms) + ✓ MaxGraphSQL;n=65536 (31459ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run21.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run21.test new file mode 100644 index 0000000000000000000000000000000000000000..bddce31e9aaddd7dc440a2adff7d8c571762d919 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run21.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2176ms) + ✓ MaxGraphSQL;n=32 (1692ms) + ✓ MaxGraphSQL;n=64 (1683ms) + ✓ MaxGraphSQL;n=128 (1851ms) + ✓ MaxGraphSQL;n=256 (1749ms) + ✓ MaxGraphSQL;n=512 (1730ms) + ✓ MaxGraphSQL;n=1024 (1755ms) + ✓ MaxGraphSQL;n=2048 (1833ms) + ✓ MaxGraphSQL;n=4096 (1982ms) + ✓ MaxGraphSQL;n=8192 (2397ms) + ✓ MaxGraphSQL;n=16384 (7400ms) + ✓ MaxGraphSQL;n=32768 (9464ms) + ✓ MaxGraphSQL;n=65536 (30932ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run22.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run22.test new file mode 100644 index 0000000000000000000000000000000000000000..cd1ab20aff92a44b9b0012af8e440bceb4fb8fbb --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run22.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2068ms) + ✓ MaxGraphSQL;n=32 (1524ms) + ✓ MaxGraphSQL;n=64 (1509ms) + ✓ MaxGraphSQL;n=128 (1516ms) + ✓ MaxGraphSQL;n=256 (1545ms) + ✓ MaxGraphSQL;n=512 (1783ms) + ✓ MaxGraphSQL;n=1024 (2174ms) + ✓ MaxGraphSQL;n=2048 (3959ms) + ✓ MaxGraphSQL;n=4096 (2038ms) + ✓ MaxGraphSQL;n=8192 (2162ms) + ✓ MaxGraphSQL;n=16384 (3654ms) + ✓ MaxGraphSQL;n=32768 (8246ms) + ✓ MaxGraphSQL;n=65536 (29949ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run23.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run23.test new file mode 100644 index 0000000000000000000000000000000000000000..fbfb9a696816f30676ba2b0fcbc7414e056ddd4e --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run23.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2145ms) + ✓ MaxGraphSQL;n=32 (2114ms) + ✓ MaxGraphSQL;n=64 (3181ms) + ✓ MaxGraphSQL;n=128 (1707ms) + ✓ MaxGraphSQL;n=256 (1592ms) + ✓ MaxGraphSQL;n=512 (1536ms) + ✓ MaxGraphSQL;n=1024 (1551ms) + ✓ MaxGraphSQL;n=2048 (1619ms) + ✓ MaxGraphSQL;n=4096 (1764ms) + ✓ MaxGraphSQL;n=8192 (2156ms) + ✓ MaxGraphSQL;n=16384 (3551ms) + ✓ MaxGraphSQL;n=32768 (8830ms) + ✓ MaxGraphSQL;n=65536 (26690ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run24.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run24.test new file mode 100644 index 0000000000000000000000000000000000000000..d243d7cac630fab96146ada42f67f9c4d192be7f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run24.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2269ms) + ✓ MaxGraphSQL;n=32 (2224ms) + ✓ MaxGraphSQL;n=64 (3538ms) + ✓ MaxGraphSQL;n=128 (1668ms) + ✓ MaxGraphSQL;n=256 (1545ms) + ✓ MaxGraphSQL;n=512 (1543ms) + ✓ MaxGraphSQL;n=1024 (1561ms) + ✓ MaxGraphSQL;n=2048 (1623ms) + ✓ MaxGraphSQL;n=4096 (1750ms) + ✓ MaxGraphSQL;n=8192 (2116ms) + ✓ MaxGraphSQL;n=16384 (3250ms) + ✓ MaxGraphSQL;n=32768 (7561ms) + ✓ MaxGraphSQL;n=65536 (29095ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run25.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run25.test new file mode 100644 index 0000000000000000000000000000000000000000..4886e9f85ee047e78a623c6572747c5b6781d1d7 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run25.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2101ms) + ✓ MaxGraphSQL;n=32 (1988ms) + ✓ MaxGraphSQL;n=64 (2917ms) + ✓ MaxGraphSQL;n=128 (1751ms) + ✓ MaxGraphSQL;n=256 (1811ms) + ✓ MaxGraphSQL;n=512 (1657ms) + ✓ MaxGraphSQL;n=1024 (1529ms) + ✓ MaxGraphSQL;n=2048 (1599ms) + ✓ MaxGraphSQL;n=4096 (1738ms) + ✓ MaxGraphSQL;n=8192 (2111ms) + ✓ MaxGraphSQL;n=16384 (3764ms) + ✓ MaxGraphSQL;n=32768 (9491ms) + ✓ MaxGraphSQL;n=65536 (30038ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run26.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run26.test new file mode 100644 index 0000000000000000000000000000000000000000..fcf5966a4389a544575259676741be61a8639410 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run26.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2076ms) + ✓ MaxGraphSQL;n=32 (1536ms) + ✓ MaxGraphSQL;n=64 (1514ms) + ✓ MaxGraphSQL;n=128 (1528ms) + ✓ MaxGraphSQL;n=256 (1555ms) + ✓ MaxGraphSQL;n=512 (1540ms) + ✓ MaxGraphSQL;n=1024 (1548ms) + ✓ MaxGraphSQL;n=2048 (1641ms) + ✓ MaxGraphSQL;n=4096 (1755ms) + ✓ MaxGraphSQL;n=8192 (4414ms) + ✓ MaxGraphSQL;n=16384 (3556ms) + ✓ MaxGraphSQL;n=32768 (8170ms) + ✓ MaxGraphSQL;n=65536 (28657ms) + + + 13 passing (60s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run27.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run27.test new file mode 100644 index 0000000000000000000000000000000000000000..407278b4b6125a68a08b9d3f0f400e617414501b --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run27.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2083ms) + ✓ MaxGraphSQL;n=32 (2039ms) + ✓ MaxGraphSQL;n=64 (3120ms) + ✓ MaxGraphSQL;n=128 (1805ms) + ✓ MaxGraphSQL;n=256 (1498ms) + ✓ MaxGraphSQL;n=512 (1477ms) + ✓ MaxGraphSQL;n=1024 (1495ms) + ✓ MaxGraphSQL;n=2048 (1562ms) + ✓ MaxGraphSQL;n=4096 (1693ms) + ✓ MaxGraphSQL;n=8192 (2089ms) + ✓ MaxGraphSQL;n=16384 (3469ms) + ✓ MaxGraphSQL;n=32768 (8780ms) + ✓ MaxGraphSQL;n=65536 (30039ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run28.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run28.test new file mode 100644 index 0000000000000000000000000000000000000000..b5246aff2d197612e1a7c28cdaf0ac5b55709f57 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run28.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2095ms) + ✓ MaxGraphSQL;n=32 (1522ms) + ✓ MaxGraphSQL;n=64 (1506ms) + ✓ MaxGraphSQL;n=128 (1535ms) + ✓ MaxGraphSQL;n=256 (1732ms) + ✓ MaxGraphSQL;n=512 (1530ms) + ✓ MaxGraphSQL;n=1024 (1901ms) + ✓ MaxGraphSQL;n=2048 (3124ms) + ✓ MaxGraphSQL;n=4096 (2230ms) + ✓ MaxGraphSQL;n=8192 (2170ms) + ✓ MaxGraphSQL;n=16384 (3554ms) + ✓ MaxGraphSQL;n=32768 (7641ms) + ✓ MaxGraphSQL;n=65536 (27210ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run29.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run29.test new file mode 100644 index 0000000000000000000000000000000000000000..2effd9736b669d00a5628e4adc15e9b0507a5786 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run29.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2309ms) + ✓ MaxGraphSQL;n=32 (2145ms) + ✓ MaxGraphSQL;n=64 (3053ms) + ✓ MaxGraphSQL;n=128 (1907ms) + ✓ MaxGraphSQL;n=256 (1663ms) + ✓ MaxGraphSQL;n=512 (1660ms) + ✓ MaxGraphSQL;n=1024 (1677ms) + ✓ MaxGraphSQL;n=2048 (1757ms) + ✓ MaxGraphSQL;n=4096 (1984ms) + ✓ MaxGraphSQL;n=8192 (2481ms) + ✓ MaxGraphSQL;n=16384 (3700ms) + ✓ MaxGraphSQL;n=32768 (9169ms) + ✓ MaxGraphSQL;n=65536 (29656ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run3.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..aa1f0965667f1fbfa343782b784a02542c814034 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run3.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2186ms) + ✓ MaxGraphSQL;n=32 (2019ms) + ✓ MaxGraphSQL;n=64 (2992ms) + ✓ MaxGraphSQL;n=128 (1769ms) + ✓ MaxGraphSQL;n=256 (1536ms) + ✓ MaxGraphSQL;n=512 (1524ms) + ✓ MaxGraphSQL;n=1024 (1546ms) + ✓ MaxGraphSQL;n=2048 (1632ms) + ✓ MaxGraphSQL;n=4096 (1812ms) + ✓ MaxGraphSQL;n=8192 (2175ms) + ✓ MaxGraphSQL;n=16384 (3640ms) + ✓ MaxGraphSQL;n=32768 (9083ms) + ✓ MaxGraphSQL;n=65536 (26993ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run30.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run30.test new file mode 100644 index 0000000000000000000000000000000000000000..09f8cfe781e36e021a6565bb825a5b0ce4ccb596 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run30.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2133ms) + ✓ MaxGraphSQL;n=32 (1609ms) + ✓ MaxGraphSQL;n=64 (1582ms) + ✓ MaxGraphSQL;n=128 (1576ms) + ✓ MaxGraphSQL;n=256 (1590ms) + ✓ MaxGraphSQL;n=512 (1620ms) + ✓ MaxGraphSQL;n=1024 (1666ms) + ✓ MaxGraphSQL;n=2048 (1684ms) + ✓ MaxGraphSQL;n=4096 (1822ms) + ✓ MaxGraphSQL;n=8192 (5337ms) + ✓ MaxGraphSQL;n=16384 (3592ms) + ✓ MaxGraphSQL;n=32768 (9441ms) + ✓ MaxGraphSQL;n=65536 (31789ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run31.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run31.test new file mode 100644 index 0000000000000000000000000000000000000000..0998acf13d7dec348539c7f3c3529e42d10a2b87 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run31.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2218ms) + ✓ MaxGraphSQL;n=32 (2190ms) + ✓ MaxGraphSQL;n=64 (3224ms) + ✓ MaxGraphSQL;n=128 (1923ms) + ✓ MaxGraphSQL;n=256 (1584ms) + ✓ MaxGraphSQL;n=512 (1583ms) + ✓ MaxGraphSQL;n=1024 (1599ms) + ✓ MaxGraphSQL;n=2048 (1673ms) + ✓ MaxGraphSQL;n=4096 (1823ms) + ✓ MaxGraphSQL;n=8192 (2254ms) + ✓ MaxGraphSQL;n=16384 (3735ms) + ✓ MaxGraphSQL;n=32768 (9363ms) + ✓ MaxGraphSQL;n=65536 (26408ms) + + + 13 passing (60s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run32.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run32.test new file mode 100644 index 0000000000000000000000000000000000000000..8c8c666ea5e43e48f39013a5355e1d565df4b785 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run32.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2196ms) + ✓ MaxGraphSQL;n=32 (2260ms) + ✓ MaxGraphSQL;n=64 (3685ms) + ✓ MaxGraphSQL;n=128 (1906ms) + ✓ MaxGraphSQL;n=256 (1577ms) + ✓ MaxGraphSQL;n=512 (1584ms) + ✓ MaxGraphSQL;n=1024 (1609ms) + ✓ MaxGraphSQL;n=2048 (1690ms) + ✓ MaxGraphSQL;n=4096 (1815ms) + ✓ MaxGraphSQL;n=8192 (2218ms) + ✓ MaxGraphSQL;n=16384 (3581ms) + ✓ MaxGraphSQL;n=32768 (8460ms) + ✓ MaxGraphSQL;n=65536 (29570ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run33.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run33.test new file mode 100644 index 0000000000000000000000000000000000000000..6ea9c38ac58aa6235e4208b9262ffe136fec3fe2 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run33.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2164ms) + ✓ MaxGraphSQL;n=32 (2121ms) + ✓ MaxGraphSQL;n=64 (3404ms) + ✓ MaxGraphSQL;n=128 (1780ms) + ✓ MaxGraphSQL;n=256 (1540ms) + ✓ MaxGraphSQL;n=512 (1521ms) + ✓ MaxGraphSQL;n=1024 (1561ms) + ✓ MaxGraphSQL;n=2048 (1646ms) + ✓ MaxGraphSQL;n=4096 (1787ms) + ✓ MaxGraphSQL;n=8192 (2234ms) + ✓ MaxGraphSQL;n=16384 (3696ms) + ✓ MaxGraphSQL;n=32768 (8895ms) + ✓ MaxGraphSQL;n=65536 (31566ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run34.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run34.test new file mode 100644 index 0000000000000000000000000000000000000000..46948595c7ec6982598d494e0995fa3b929676f3 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run34.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2188ms) + ✓ MaxGraphSQL;n=32 (2045ms) + ✓ MaxGraphSQL;n=64 (3163ms) + ✓ MaxGraphSQL;n=128 (1677ms) + ✓ MaxGraphSQL;n=256 (1582ms) + ✓ MaxGraphSQL;n=512 (1582ms) + ✓ MaxGraphSQL;n=1024 (1598ms) + ✓ MaxGraphSQL;n=2048 (1684ms) + ✓ MaxGraphSQL;n=4096 (1820ms) + ✓ MaxGraphSQL;n=8192 (2230ms) + ✓ MaxGraphSQL;n=16384 (3710ms) + ✓ MaxGraphSQL;n=32768 (8883ms) + ✓ MaxGraphSQL;n=65536 (30540ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run35.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run35.test new file mode 100644 index 0000000000000000000000000000000000000000..fd80e1e6bd6110704c43939d57f198e847ecc7d8 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run35.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2009ms) + ✓ MaxGraphSQL;n=32 (2042ms) + ✓ MaxGraphSQL;n=64 (3081ms) + ✓ MaxGraphSQL;n=128 (1703ms) + ✓ MaxGraphSQL;n=256 (1525ms) + ✓ MaxGraphSQL;n=512 (1474ms) + ✓ MaxGraphSQL;n=1024 (1496ms) + ✓ MaxGraphSQL;n=2048 (1554ms) + ✓ MaxGraphSQL;n=4096 (1676ms) + ✓ MaxGraphSQL;n=8192 (2039ms) + ✓ MaxGraphSQL;n=16384 (3207ms) + ✓ MaxGraphSQL;n=32768 (7335ms) + ✓ MaxGraphSQL;n=65536 (25142ms) + + + 13 passing (55s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run36.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run36.test new file mode 100644 index 0000000000000000000000000000000000000000..57d4391cba2e6f075307da765d43fa1813eb40c6 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run36.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2344ms) + ✓ MaxGraphSQL;n=32 (2447ms) + ✓ MaxGraphSQL;n=64 (3797ms) + ✓ MaxGraphSQL;n=128 (1687ms) + ✓ MaxGraphSQL;n=256 (1616ms) + ✓ MaxGraphSQL;n=512 (1631ms) + ✓ MaxGraphSQL;n=1024 (1649ms) + ✓ MaxGraphSQL;n=2048 (1732ms) + ✓ MaxGraphSQL;n=4096 (1877ms) + ✓ MaxGraphSQL;n=8192 (2276ms) + ✓ MaxGraphSQL;n=16384 (3794ms) + ✓ MaxGraphSQL;n=32768 (8778ms) + ✓ MaxGraphSQL;n=65536 (27386ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run37.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run37.test new file mode 100644 index 0000000000000000000000000000000000000000..3091650f6b221ab9e9765600e26fc7fdaf78cf9c --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run37.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2055ms) + ✓ MaxGraphSQL;n=32 (1540ms) + ✓ MaxGraphSQL;n=64 (1520ms) + ✓ MaxGraphSQL;n=128 (1541ms) + ✓ MaxGraphSQL;n=256 (1579ms) + ✓ MaxGraphSQL;n=512 (1568ms) + ✓ MaxGraphSQL;n=1024 (1560ms) + ✓ MaxGraphSQL;n=2048 (1628ms) + ✓ MaxGraphSQL;n=4096 (1774ms) + ✓ MaxGraphSQL;n=8192 (4898ms) + ✓ MaxGraphSQL;n=16384 (3819ms) + ✓ MaxGraphSQL;n=32768 (9031ms) + ✓ MaxGraphSQL;n=65536 (31225ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run38.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run38.test new file mode 100644 index 0000000000000000000000000000000000000000..42ade486cb69b63d9dee765073cdf1c4ae9c8dd1 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run38.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2287ms) + ✓ MaxGraphSQL;n=32 (2229ms) + ✓ MaxGraphSQL;n=64 (3443ms) + ✓ MaxGraphSQL;n=128 (1945ms) + ✓ MaxGraphSQL;n=256 (1674ms) + ✓ MaxGraphSQL;n=512 (1666ms) + ✓ MaxGraphSQL;n=1024 (1672ms) + ✓ MaxGraphSQL;n=2048 (1867ms) + ✓ MaxGraphSQL;n=4096 (1994ms) + ✓ MaxGraphSQL;n=8192 (2397ms) + ✓ MaxGraphSQL;n=16384 (3948ms) + ✓ MaxGraphSQL;n=32768 (9954ms) + ✓ MaxGraphSQL;n=65536 (25650ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run39.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run39.test new file mode 100644 index 0000000000000000000000000000000000000000..b7f46824eff97e5f112877700a7d59778c7f6b5b --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run39.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2030ms) + ✓ MaxGraphSQL;n=32 (1551ms) + ✓ MaxGraphSQL;n=64 (1522ms) + ✓ MaxGraphSQL;n=128 (1534ms) + ✓ MaxGraphSQL;n=256 (1558ms) + ✓ MaxGraphSQL;n=512 (1576ms) + ✓ MaxGraphSQL;n=1024 (1561ms) + ✓ MaxGraphSQL;n=2048 (1634ms) + ✓ MaxGraphSQL;n=4096 (1777ms) + ✓ MaxGraphSQL;n=8192 (4848ms) + ✓ MaxGraphSQL;n=16384 (3536ms) + ✓ MaxGraphSQL;n=32768 (8150ms) + ✓ MaxGraphSQL;n=65536 (27357ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run4.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..cfe920afacc9278738e57be8971e2bd987ff4fd3 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run4.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2116ms) + ✓ MaxGraphSQL;n=32 (1975ms) + ✓ MaxGraphSQL;n=64 (2865ms) + ✓ MaxGraphSQL;n=128 (1763ms) + ✓ MaxGraphSQL;n=256 (1867ms) + ✓ MaxGraphSQL;n=512 (1514ms) + ✓ MaxGraphSQL;n=1024 (1547ms) + ✓ MaxGraphSQL;n=2048 (1611ms) + ✓ MaxGraphSQL;n=4096 (1747ms) + ✓ MaxGraphSQL;n=8192 (2154ms) + ✓ MaxGraphSQL;n=16384 (3560ms) + ✓ MaxGraphSQL;n=32768 (8869ms) + ✓ MaxGraphSQL;n=65536 (29640ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run40.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run40.test new file mode 100644 index 0000000000000000000000000000000000000000..7f69ec839e56c95cd25f5db955f40c834d08bf4c --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run40.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2141ms) + ✓ MaxGraphSQL;n=32 (2050ms) + ✓ MaxGraphSQL;n=64 (2991ms) + ✓ MaxGraphSQL;n=128 (1843ms) + ✓ MaxGraphSQL;n=256 (1574ms) + ✓ MaxGraphSQL;n=512 (1621ms) + ✓ MaxGraphSQL;n=1024 (1643ms) + ✓ MaxGraphSQL;n=2048 (1700ms) + ✓ MaxGraphSQL;n=4096 (1846ms) + ✓ MaxGraphSQL;n=8192 (2245ms) + ✓ MaxGraphSQL;n=16384 (3484ms) + ✓ MaxGraphSQL;n=32768 (8182ms) + ✓ MaxGraphSQL;n=65536 (26598ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run401.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run401.test new file mode 100644 index 0000000000000000000000000000000000000000..496b5129ef945c288349d1fd80510f8fd1f8d817 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run401.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2092ms) + ✓ MaxGraphSQL;n=32 (1814ms) + ✓ MaxGraphSQL;n=64 (1771ms) + ✓ MaxGraphSQL;n=128 (1773ms) + ✓ MaxGraphSQL;n=256 (1633ms) + ✓ MaxGraphSQL;n=512 (1795ms) + ✓ MaxGraphSQL;n=1024 (1789ms) + ✓ MaxGraphSQL;n=2048 (1885ms) + ✓ MaxGraphSQL;n=4096 (2017ms) + ✓ MaxGraphSQL;n=8192 (2463ms) + ✓ MaxGraphSQL;n=16384 (4002ms) + ✓ MaxGraphSQL;n=32768 (9242ms) + ✓ MaxGraphSQL;n=65536 (28704ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run402.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run402.test new file mode 100644 index 0000000000000000000000000000000000000000..308b68b5e0f3ce1524d97974cf8146496ed7766f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run402.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2219ms) + ✓ MaxGraphSQL;n=32 (1706ms) + ✓ MaxGraphSQL;n=64 (1678ms) + ✓ MaxGraphSQL;n=128 (1674ms) + ✓ MaxGraphSQL;n=256 (1693ms) + ✓ MaxGraphSQL;n=512 (1798ms) + ✓ MaxGraphSQL;n=1024 (1795ms) + ✓ MaxGraphSQL;n=2048 (1893ms) + ✓ MaxGraphSQL;n=4096 (2013ms) + ✓ MaxGraphSQL;n=8192 (2461ms) + ✓ MaxGraphSQL;n=16384 (4022ms) + ✓ MaxGraphSQL;n=32768 (9267ms) + ✓ MaxGraphSQL;n=65536 (28679ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run403.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run403.test new file mode 100644 index 0000000000000000000000000000000000000000..abac223c315ef5edb651e19a54e0ba38eebb6301 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run403.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2128ms) + ✓ MaxGraphSQL;n=32 (1581ms) + ✓ MaxGraphSQL;n=64 (1567ms) + ✓ MaxGraphSQL;n=128 (1573ms) + ✓ MaxGraphSQL;n=256 (1580ms) + ✓ MaxGraphSQL;n=512 (1597ms) + ✓ MaxGraphSQL;n=1024 (1605ms) + ✓ MaxGraphSQL;n=2048 (1683ms) + ✓ MaxGraphSQL;n=4096 (1803ms) + ✓ MaxGraphSQL;n=8192 (2203ms) + ✓ MaxGraphSQL;n=16384 (3637ms) + ✓ MaxGraphSQL;n=32768 (8342ms) + ✓ MaxGraphSQL;n=65536 (26697ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run404.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run404.test new file mode 100644 index 0000000000000000000000000000000000000000..4ef661042f75a8b7ee55a9d2d2098b2670cd3523 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run404.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2187ms) + ✓ MaxGraphSQL;n=32 (1612ms) + ✓ MaxGraphSQL;n=64 (1591ms) + ✓ MaxGraphSQL;n=128 (1587ms) + ✓ MaxGraphSQL;n=256 (1620ms) + ✓ MaxGraphSQL;n=512 (1617ms) + ✓ MaxGraphSQL;n=1024 (1637ms) + ✓ MaxGraphSQL;n=2048 (1713ms) + ✓ MaxGraphSQL;n=4096 (1836ms) + ✓ MaxGraphSQL;n=8192 (2297ms) + ✓ MaxGraphSQL;n=16384 (3626ms) + ✓ MaxGraphSQL;n=32768 (8451ms) + ✓ MaxGraphSQL;n=65536 (26697ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run405.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run405.test new file mode 100644 index 0000000000000000000000000000000000000000..5216efde829b9e7e2ff2a75e29edaa3a8c5f2cf9 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run405.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (1901ms) + ✓ MaxGraphSQL;n=32 (1473ms) + ✓ MaxGraphSQL;n=64 (1627ms) + ✓ MaxGraphSQL;n=128 (1624ms) + ✓ MaxGraphSQL;n=256 (1627ms) + ✓ MaxGraphSQL;n=512 (1641ms) + ✓ MaxGraphSQL;n=1024 (1654ms) + ✓ MaxGraphSQL;n=2048 (1739ms) + ✓ MaxGraphSQL;n=4096 (1883ms) + ✓ MaxGraphSQL;n=8192 (2322ms) + ✓ MaxGraphSQL;n=16384 (3820ms) + ✓ MaxGraphSQL;n=32768 (9045ms) + ✓ MaxGraphSQL;n=65536 (28882ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run406.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run406.test new file mode 100644 index 0000000000000000000000000000000000000000..6a804200fa5e51e7967b7179a23657e097d641bd --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run406.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2089ms) + ✓ MaxGraphSQL;n=32 (1582ms) + ✓ MaxGraphSQL;n=64 (1595ms) + ✓ MaxGraphSQL;n=128 (1611ms) + ✓ MaxGraphSQL;n=256 (1631ms) + ✓ MaxGraphSQL;n=512 (1633ms) + ✓ MaxGraphSQL;n=1024 (1659ms) + ✓ MaxGraphSQL;n=2048 (1737ms) + ✓ MaxGraphSQL;n=4096 (1879ms) + ✓ MaxGraphSQL;n=8192 (2285ms) + ✓ MaxGraphSQL;n=16384 (3803ms) + ✓ MaxGraphSQL;n=32768 (8741ms) + ✓ MaxGraphSQL;n=65536 (27439ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run407.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run407.test new file mode 100644 index 0000000000000000000000000000000000000000..133ec18b124c7c0aaf5a450f12f982343968a4b5 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run407.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2071ms) + ✓ MaxGraphSQL;n=32 (1539ms) + ✓ MaxGraphSQL;n=64 (1506ms) + ✓ MaxGraphSQL;n=128 (1539ms) + ✓ MaxGraphSQL;n=256 (1576ms) + ✓ MaxGraphSQL;n=512 (1614ms) + ✓ MaxGraphSQL;n=1024 (1629ms) + ✓ MaxGraphSQL;n=2048 (1710ms) + ✓ MaxGraphSQL;n=4096 (1854ms) + ✓ MaxGraphSQL;n=8192 (2298ms) + ✓ MaxGraphSQL;n=16384 (3853ms) + ✓ MaxGraphSQL;n=32768 (9038ms) + ✓ MaxGraphSQL;n=65536 (28054ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run408.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run408.test new file mode 100644 index 0000000000000000000000000000000000000000..7461f49d106fcd90ae5adb94ccccde9173da172a --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run408.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2049ms) + ✓ MaxGraphSQL;n=32 (1544ms) + ✓ MaxGraphSQL;n=64 (1522ms) + ✓ MaxGraphSQL;n=128 (1534ms) + ✓ MaxGraphSQL;n=256 (1531ms) + ✓ MaxGraphSQL;n=512 (1548ms) + ✓ MaxGraphSQL;n=1024 (1574ms) + ✓ MaxGraphSQL;n=2048 (1618ms) + ✓ MaxGraphSQL;n=4096 (1755ms) + ✓ MaxGraphSQL;n=8192 (2137ms) + ✓ MaxGraphSQL;n=16384 (3456ms) + ✓ MaxGraphSQL;n=32768 (7858ms) + ✓ MaxGraphSQL;n=65536 (24391ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run409.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run409.test new file mode 100644 index 0000000000000000000000000000000000000000..0d2c47aeba261f31e5759b5e8bf084dd3c7ab160 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run409.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2059ms) + ✓ MaxGraphSQL;n=32 (1536ms) + ✓ MaxGraphSQL;n=64 (1523ms) + ✓ MaxGraphSQL;n=128 (1519ms) + ✓ MaxGraphSQL;n=256 (1528ms) + ✓ MaxGraphSQL;n=512 (1547ms) + ✓ MaxGraphSQL;n=1024 (1566ms) + ✓ MaxGraphSQL;n=2048 (1719ms) + ✓ MaxGraphSQL;n=4096 (1765ms) + ✓ MaxGraphSQL;n=8192 (2155ms) + ✓ MaxGraphSQL;n=16384 (3526ms) + ✓ MaxGraphSQL;n=32768 (7964ms) + ✓ MaxGraphSQL;n=65536 (24741ms) + + + 13 passing (53s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run410.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run410.test new file mode 100644 index 0000000000000000000000000000000000000000..9b7d9d3a357b6be82c1dc5ca58f98b443484e014 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run410.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2003ms) + ✓ MaxGraphSQL;n=32 (1505ms) + ✓ MaxGraphSQL;n=64 (1486ms) + ✓ MaxGraphSQL;n=128 (1484ms) + ✓ MaxGraphSQL;n=256 (1491ms) + ✓ MaxGraphSQL;n=512 (1502ms) + ✓ MaxGraphSQL;n=1024 (1519ms) + ✓ MaxGraphSQL;n=2048 (1599ms) + ✓ MaxGraphSQL;n=4096 (1715ms) + ✓ MaxGraphSQL;n=8192 (2078ms) + ✓ MaxGraphSQL;n=16384 (3378ms) + ✓ MaxGraphSQL;n=32768 (7641ms) + ✓ MaxGraphSQL;n=65536 (24226ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run411.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run411.test new file mode 100644 index 0000000000000000000000000000000000000000..ba595df219d3c3b429144d333f66b5675e668610 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run411.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2264ms) + ✓ MaxGraphSQL;n=32 (1748ms) + ✓ MaxGraphSQL;n=64 (1720ms) + ✓ MaxGraphSQL;n=128 (1720ms) + ✓ MaxGraphSQL;n=256 (1725ms) + ✓ MaxGraphSQL;n=512 (1731ms) + ✓ MaxGraphSQL;n=1024 (1753ms) + ✓ MaxGraphSQL;n=2048 (1828ms) + ✓ MaxGraphSQL;n=4096 (1969ms) + ✓ MaxGraphSQL;n=8192 (2408ms) + ✓ MaxGraphSQL;n=16384 (3754ms) + ✓ MaxGraphSQL;n=32768 (8488ms) + ✓ MaxGraphSQL;n=65536 (26171ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run412.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run412.test new file mode 100644 index 0000000000000000000000000000000000000000..59eb953098d2921c32457c63cee8e7d7f454c67f --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run412.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2074ms) + ✓ MaxGraphSQL;n=32 (1532ms) + ✓ MaxGraphSQL;n=64 (1520ms) + ✓ MaxGraphSQL;n=128 (1540ms) + ✓ MaxGraphSQL;n=256 (1612ms) + ✓ MaxGraphSQL;n=512 (1580ms) + ✓ MaxGraphSQL;n=1024 (1594ms) + ✓ MaxGraphSQL;n=2048 (1671ms) + ✓ MaxGraphSQL;n=4096 (1781ms) + ✓ MaxGraphSQL;n=8192 (2156ms) + ✓ MaxGraphSQL;n=16384 (3367ms) + ✓ MaxGraphSQL;n=32768 (7378ms) + ✓ MaxGraphSQL;n=65536 (22423ms) + + + 13 passing (50s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run413.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run413.test new file mode 100644 index 0000000000000000000000000000000000000000..f8128e436c4170c8ca57cf5f87ef6408cafe28da --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run413.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2106ms) + ✓ MaxGraphSQL;n=32 (1598ms) + ✓ MaxGraphSQL;n=64 (1583ms) + ✓ MaxGraphSQL;n=128 (1579ms) + ✓ MaxGraphSQL;n=256 (1588ms) + ✓ MaxGraphSQL;n=512 (1598ms) + ✓ MaxGraphSQL;n=1024 (1611ms) + ✓ MaxGraphSQL;n=2048 (1687ms) + ✓ MaxGraphSQL;n=4096 (1803ms) + ✓ MaxGraphSQL;n=8192 (2186ms) + ✓ MaxGraphSQL;n=16384 (3468ms) + ✓ MaxGraphSQL;n=32768 (7760ms) + ✓ MaxGraphSQL;n=65536 (23820ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run414.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run414.test new file mode 100644 index 0000000000000000000000000000000000000000..81faad6b1a949244ffcb89f57ac3bc886c038648 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run414.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2159ms) + ✓ MaxGraphSQL;n=32 (1660ms) + ✓ MaxGraphSQL;n=64 (1641ms) + ✓ MaxGraphSQL;n=128 (1642ms) + ✓ MaxGraphSQL;n=256 (1661ms) + ✓ MaxGraphSQL;n=512 (1673ms) + ✓ MaxGraphSQL;n=1024 (1679ms) + ✓ MaxGraphSQL;n=2048 (1774ms) + ✓ MaxGraphSQL;n=4096 (1966ms) + ✓ MaxGraphSQL;n=8192 (2381ms) + ✓ MaxGraphSQL;n=16384 (3867ms) + ✓ MaxGraphSQL;n=32768 (8704ms) + ✓ MaxGraphSQL;n=65536 (27307ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run415.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run415.test new file mode 100644 index 0000000000000000000000000000000000000000..39211fb6a667e692159e89cc5f8308d0862397a2 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run415.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2114ms) + ✓ MaxGraphSQL;n=32 (1494ms) + ✓ MaxGraphSQL;n=64 (1484ms) + ✓ MaxGraphSQL;n=128 (1484ms) + ✓ MaxGraphSQL;n=256 (1491ms) + ✓ MaxGraphSQL;n=512 (1495ms) + ✓ MaxGraphSQL;n=1024 (1508ms) + ✓ MaxGraphSQL;n=2048 (1597ms) + ✓ MaxGraphSQL;n=4096 (1723ms) + ✓ MaxGraphSQL;n=8192 (2162ms) + ✓ MaxGraphSQL;n=16384 (3649ms) + ✓ MaxGraphSQL;n=32768 (8608ms) + ✓ MaxGraphSQL;n=65536 (27980ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run416.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run416.test new file mode 100644 index 0000000000000000000000000000000000000000..e908ce3fd98dfaf802a4ef6681b49770cb32d5b9 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run416.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2125ms) + ✓ MaxGraphSQL;n=32 (1556ms) + ✓ MaxGraphSQL;n=64 (1544ms) + ✓ MaxGraphSQL;n=128 (1552ms) + ✓ MaxGraphSQL;n=256 (1567ms) + ✓ MaxGraphSQL;n=512 (1591ms) + ✓ MaxGraphSQL;n=1024 (1594ms) + ✓ MaxGraphSQL;n=2048 (1659ms) + ✓ MaxGraphSQL;n=4096 (1798ms) + ✓ MaxGraphSQL;n=8192 (2231ms) + ✓ MaxGraphSQL;n=16384 (3642ms) + ✓ MaxGraphSQL;n=32768 (8427ms) + ✓ MaxGraphSQL;n=65536 (26389ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run417.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run417.test new file mode 100644 index 0000000000000000000000000000000000000000..90e463b4b5c6a46887f439242daacb98628773aa --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run417.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2112ms) + ✓ MaxGraphSQL;n=32 (1582ms) + ✓ MaxGraphSQL;n=64 (1563ms) + ✓ MaxGraphSQL;n=128 (1573ms) + ✓ MaxGraphSQL;n=256 (1578ms) + ✓ MaxGraphSQL;n=512 (1585ms) + ✓ MaxGraphSQL;n=1024 (1606ms) + ✓ MaxGraphSQL;n=2048 (1668ms) + ✓ MaxGraphSQL;n=4096 (1795ms) + ✓ MaxGraphSQL;n=8192 (2180ms) + ✓ MaxGraphSQL;n=16384 (3526ms) + ✓ MaxGraphSQL;n=32768 (8016ms) + ✓ MaxGraphSQL;n=65536 (24879ms) + + + 13 passing (54s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run418.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run418.test new file mode 100644 index 0000000000000000000000000000000000000000..eec31e67e7a89bdd49e73dc0f71ac164cd15ee85 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run418.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2085ms) + ✓ MaxGraphSQL;n=32 (1549ms) + ✓ MaxGraphSQL;n=64 (1550ms) + ✓ MaxGraphSQL;n=128 (1574ms) + ✓ MaxGraphSQL;n=256 (1593ms) + ✓ MaxGraphSQL;n=512 (1594ms) + ✓ MaxGraphSQL;n=1024 (1614ms) + ✓ MaxGraphSQL;n=2048 (1703ms) + ✓ MaxGraphSQL;n=4096 (1859ms) + ✓ MaxGraphSQL;n=8192 (2270ms) + ✓ MaxGraphSQL;n=16384 (3685ms) + ✓ MaxGraphSQL;n=32768 (8474ms) + ✓ MaxGraphSQL;n=65536 (26850ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run419.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run419.test new file mode 100644 index 0000000000000000000000000000000000000000..9258004e6e12c3028dd306898df779e5d9ca49f6 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run419.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2057ms) + ✓ MaxGraphSQL;n=32 (1474ms) + ✓ MaxGraphSQL;n=64 (1458ms) + ✓ MaxGraphSQL;n=128 (1470ms) + ✓ MaxGraphSQL;n=256 (1517ms) + ✓ MaxGraphSQL;n=512 (1534ms) + ✓ MaxGraphSQL;n=1024 (1543ms) + ✓ MaxGraphSQL;n=2048 (1612ms) + ✓ MaxGraphSQL;n=4096 (1734ms) + ✓ MaxGraphSQL;n=8192 (2110ms) + ✓ MaxGraphSQL;n=16384 (3380ms) + ✓ MaxGraphSQL;n=32768 (7702ms) + ✓ MaxGraphSQL;n=65536 (23886ms) + + + 13 passing (52s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run420.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run420.test new file mode 100644 index 0000000000000000000000000000000000000000..d8071a97b934f42906f4317e45df7276fb52d2c0 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run420.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2141ms) + ✓ MaxGraphSQL;n=32 (1618ms) + ✓ MaxGraphSQL;n=64 (1608ms) + ✓ MaxGraphSQL;n=128 (1625ms) + ✓ MaxGraphSQL;n=256 (1685ms) + ✓ MaxGraphSQL;n=512 (1688ms) + ✓ MaxGraphSQL;n=1024 (1715ms) + ✓ MaxGraphSQL;n=2048 (1778ms) + ✓ MaxGraphSQL;n=4096 (1908ms) + ✓ MaxGraphSQL;n=8192 (2301ms) + ✓ MaxGraphSQL;n=16384 (3672ms) + ✓ MaxGraphSQL;n=32768 (8277ms) + ✓ MaxGraphSQL;n=65536 (25677ms) + + + 13 passing (56s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run5.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..37aca0316460f47772803d740d38a5cbd8a721f6 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2165ms) + ✓ MaxGraphSQL;n=32 (2221ms) + ✓ MaxGraphSQL;n=64 (3873ms) + ✓ MaxGraphSQL;n=128 (2009ms) + ✓ MaxGraphSQL;n=256 (1684ms) + ✓ MaxGraphSQL;n=512 (1726ms) + ✓ MaxGraphSQL;n=1024 (1707ms) + ✓ MaxGraphSQL;n=2048 (1805ms) + ✓ MaxGraphSQL;n=4096 (1892ms) + ✓ MaxGraphSQL;n=8192 (2311ms) + ✓ MaxGraphSQL;n=16384 (3764ms) + ✓ MaxGraphSQL;n=32768 (9227ms) + ✓ MaxGraphSQL;n=65536 (30238ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run6.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..a10d20d4faec50dd826ecf4d88e6d9304fb1e568 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run6.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2342ms) + ✓ MaxGraphSQL;n=32 (2442ms) + ✓ MaxGraphSQL;n=64 (3480ms) + ✓ MaxGraphSQL;n=128 (1812ms) + ✓ MaxGraphSQL;n=256 (1630ms) + ✓ MaxGraphSQL;n=512 (1700ms) + ✓ MaxGraphSQL;n=1024 (1657ms) + ✓ MaxGraphSQL;n=2048 (1735ms) + ✓ MaxGraphSQL;n=4096 (1870ms) + ✓ MaxGraphSQL;n=8192 (2297ms) + ✓ MaxGraphSQL;n=16384 (3832ms) + ✓ MaxGraphSQL;n=32768 (8753ms) + ✓ MaxGraphSQL;n=65536 (29069ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run61.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run61.test new file mode 100644 index 0000000000000000000000000000000000000000..131d5edb87e5ddc6cf847e8cb43e0f7b391c5fa9 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run61.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2147ms) + ✓ MaxGraphSQL;n=32 (2171ms) + ✓ MaxGraphSQL;n=64 (3355ms) + ✓ MaxGraphSQL;n=128 (2070ms) + ✓ MaxGraphSQL;n=256 (1557ms) + ✓ MaxGraphSQL;n=512 (1557ms) + ✓ MaxGraphSQL;n=1024 (1593ms) + ✓ MaxGraphSQL;n=2048 (1638ms) + ✓ MaxGraphSQL;n=4096 (1761ms) + ✓ MaxGraphSQL;n=8192 (2157ms) + ✓ MaxGraphSQL;n=16384 (3414ms) + ✓ MaxGraphSQL;n=32768 (8051ms) + ✓ MaxGraphSQL;n=65536 (26219ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run62.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run62.test new file mode 100644 index 0000000000000000000000000000000000000000..22219e11d25b25d3b92e461154270ec28555b77e --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run62.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2157ms) + ✓ MaxGraphSQL;n=32 (2052ms) + ✓ MaxGraphSQL;n=64 (3010ms) + ✓ MaxGraphSQL;n=128 (1920ms) + ✓ MaxGraphSQL;n=256 (1534ms) + ✓ MaxGraphSQL;n=512 (1585ms) + ✓ MaxGraphSQL;n=1024 (1612ms) + ✓ MaxGraphSQL;n=2048 (1677ms) + ✓ MaxGraphSQL;n=4096 (1806ms) + ✓ MaxGraphSQL;n=8192 (2221ms) + ✓ MaxGraphSQL;n=16384 (3625ms) + ✓ MaxGraphSQL;n=32768 (8640ms) + ✓ MaxGraphSQL;n=65536 (25993ms) + + + 13 passing (58s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run63.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run63.test new file mode 100644 index 0000000000000000000000000000000000000000..921ef6447aa889f12e7d8608bcfa04486d79addd --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run63.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2110ms) + ✓ MaxGraphSQL;n=32 (1594ms) + ✓ MaxGraphSQL;n=64 (1580ms) + ✓ MaxGraphSQL;n=128 (1598ms) + ✓ MaxGraphSQL;n=256 (1642ms) + ✓ MaxGraphSQL;n=512 (1614ms) + ✓ MaxGraphSQL;n=1024 (1651ms) + ✓ MaxGraphSQL;n=2048 (1699ms) + ✓ MaxGraphSQL;n=4096 (1875ms) + ✓ MaxGraphSQL;n=8192 (5649ms) + ✓ MaxGraphSQL;n=16384 (3677ms) + ✓ MaxGraphSQL;n=32768 (9115ms) + ✓ MaxGraphSQL;n=65536 (30315ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run64.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run64.test new file mode 100644 index 0000000000000000000000000000000000000000..88e1ae21171d59cf6aaf433aa7f9b02fed50203b --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run64.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2103ms) + ✓ MaxGraphSQL;n=32 (2093ms) + ✓ MaxGraphSQL;n=64 (3005ms) + ✓ MaxGraphSQL;n=128 (2287ms) + ✓ MaxGraphSQL;n=256 (1711ms) + ✓ MaxGraphSQL;n=512 (1706ms) + ✓ MaxGraphSQL;n=1024 (1735ms) + ✓ MaxGraphSQL;n=2048 (1790ms) + ✓ MaxGraphSQL;n=4096 (1934ms) + ✓ MaxGraphSQL;n=8192 (2350ms) + ✓ MaxGraphSQL;n=16384 (3791ms) + ✓ MaxGraphSQL;n=32768 (9008ms) + ✓ MaxGraphSQL;n=65536 (29325ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run65.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run65.test new file mode 100644 index 0000000000000000000000000000000000000000..344d30a01646e24478f039a8650ccb1fc14f4f86 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run65.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2149ms) + ✓ MaxGraphSQL;n=32 (2010ms) + ✓ MaxGraphSQL;n=64 (2938ms) + ✓ MaxGraphSQL;n=128 (2270ms) + ✓ MaxGraphSQL;n=256 (1628ms) + ✓ MaxGraphSQL;n=512 (1593ms) + ✓ MaxGraphSQL;n=1024 (1623ms) + ✓ MaxGraphSQL;n=2048 (1687ms) + ✓ MaxGraphSQL;n=4096 (1814ms) + ✓ MaxGraphSQL;n=8192 (2188ms) + ✓ MaxGraphSQL;n=16384 (3532ms) + ✓ MaxGraphSQL;n=32768 (8225ms) + ✓ MaxGraphSQL;n=65536 (31025ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run66.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run66.test new file mode 100644 index 0000000000000000000000000000000000000000..2d4a85b12bf8706e51e3dbed19201f36bd794c64 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run66.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2090ms) + ✓ MaxGraphSQL;n=32 (1522ms) + ✓ MaxGraphSQL;n=64 (1515ms) + ✓ MaxGraphSQL;n=128 (1526ms) + ✓ MaxGraphSQL;n=256 (1555ms) + ✓ MaxGraphSQL;n=512 (1697ms) + ✓ MaxGraphSQL;n=1024 (2372ms) + ✓ MaxGraphSQL;n=2048 (3630ms) + ✓ MaxGraphSQL;n=4096 (1794ms) + ✓ MaxGraphSQL;n=8192 (2095ms) + ✓ MaxGraphSQL;n=16384 (3586ms) + ✓ MaxGraphSQL;n=32768 (8304ms) + ✓ MaxGraphSQL;n=65536 (28233ms) + + + 13 passing (60s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run67.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run67.test new file mode 100644 index 0000000000000000000000000000000000000000..ea67808ee3b326ce664a265d03a8d3d41db89dea --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run67.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2084ms) + ✓ MaxGraphSQL;n=32 (2020ms) + ✓ MaxGraphSQL;n=64 (3177ms) + ✓ MaxGraphSQL;n=128 (1764ms) + ✓ MaxGraphSQL;n=256 (1503ms) + ✓ MaxGraphSQL;n=512 (1517ms) + ✓ MaxGraphSQL;n=1024 (1630ms) + ✓ MaxGraphSQL;n=2048 (1680ms) + ✓ MaxGraphSQL;n=4096 (1836ms) + ✓ MaxGraphSQL;n=8192 (2224ms) + ✓ MaxGraphSQL;n=16384 (3464ms) + ✓ MaxGraphSQL;n=32768 (7718ms) + ✓ MaxGraphSQL;n=65536 (28778ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run68.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run68.test new file mode 100644 index 0000000000000000000000000000000000000000..d804565f654c4dc0d6dbd5fee3c4dfc704bcb93c --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run68.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2239ms) + ✓ MaxGraphSQL;n=32 (2241ms) + ✓ MaxGraphSQL;n=64 (3374ms) + ✓ MaxGraphSQL;n=128 (1862ms) + ✓ MaxGraphSQL;n=256 (1680ms) + ✓ MaxGraphSQL;n=512 (1703ms) + ✓ MaxGraphSQL;n=1024 (1722ms) + ✓ MaxGraphSQL;n=2048 (1805ms) + ✓ MaxGraphSQL;n=4096 (1930ms) + ✓ MaxGraphSQL;n=8192 (2311ms) + ✓ MaxGraphSQL;n=16384 (3586ms) + ✓ MaxGraphSQL;n=32768 (8622ms) + ✓ MaxGraphSQL;n=65536 (26947ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run69.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run69.test new file mode 100644 index 0000000000000000000000000000000000000000..ea08b695f6de59d325fede5f9ee2b20ebe6bd563 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run69.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2219ms) + ✓ MaxGraphSQL;n=32 (2262ms) + ✓ MaxGraphSQL;n=64 (3583ms) + ✓ MaxGraphSQL;n=128 (2062ms) + ✓ MaxGraphSQL;n=256 (1603ms) + ✓ MaxGraphSQL;n=512 (1613ms) + ✓ MaxGraphSQL;n=1024 (1631ms) + ✓ MaxGraphSQL;n=2048 (1699ms) + ✓ MaxGraphSQL;n=4096 (1839ms) + ✓ MaxGraphSQL;n=8192 (2244ms) + ✓ MaxGraphSQL;n=16384 (3691ms) + ✓ MaxGraphSQL;n=32768 (9056ms) + ✓ MaxGraphSQL;n=65536 (28912ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run7.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..bf230f06a2ab1ebc06811f18c5a62b6938104298 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2161ms) + ✓ MaxGraphSQL;n=32 (1596ms) + ✓ MaxGraphSQL;n=64 (1585ms) + ✓ MaxGraphSQL;n=128 (1611ms) + ✓ MaxGraphSQL;n=256 (1670ms) + ✓ MaxGraphSQL;n=512 (1752ms) + ✓ MaxGraphSQL;n=1024 (2155ms) + ✓ MaxGraphSQL;n=2048 (3915ms) + ✓ MaxGraphSQL;n=4096 (2245ms) + ✓ MaxGraphSQL;n=8192 (2222ms) + ✓ MaxGraphSQL;n=16384 (3646ms) + ✓ MaxGraphSQL;n=32768 (8480ms) + ✓ MaxGraphSQL;n=65536 (30793ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run70.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run70.test new file mode 100644 index 0000000000000000000000000000000000000000..305b9b866aa9a68e9aa8e27aeda6a6b62d29c476 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run70.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2065ms) + ✓ MaxGraphSQL;n=32 (1710ms) + ✓ MaxGraphSQL;n=64 (2230ms) + ✓ MaxGraphSQL;n=128 (3031ms) + ✓ MaxGraphSQL;n=256 (1595ms) + ✓ MaxGraphSQL;n=512 (1587ms) + ✓ MaxGraphSQL;n=1024 (1608ms) + ✓ MaxGraphSQL;n=2048 (1670ms) + ✓ MaxGraphSQL;n=4096 (1803ms) + ✓ MaxGraphSQL;n=8192 (2168ms) + ✓ MaxGraphSQL;n=16384 (3459ms) + ✓ MaxGraphSQL;n=32768 (8401ms) + ✓ MaxGraphSQL;n=65536 (31164ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run71.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run71.test new file mode 100644 index 0000000000000000000000000000000000000000..fce32ba034b3b790712e05d8e4dc9507a6c813f5 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run71.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2088ms) + ✓ MaxGraphSQL;n=32 (1565ms) + ✓ MaxGraphSQL;n=64 (1565ms) + ✓ MaxGraphSQL;n=128 (1585ms) + ✓ MaxGraphSQL;n=256 (1685ms) + ✓ MaxGraphSQL;n=512 (1598ms) + ✓ MaxGraphSQL;n=1024 (1711ms) + ✓ MaxGraphSQL;n=2048 (2636ms) + ✓ MaxGraphSQL;n=4096 (3917ms) + ✓ MaxGraphSQL;n=8192 (2338ms) + ✓ MaxGraphSQL;n=16384 (3620ms) + ✓ MaxGraphSQL;n=32768 (8366ms) + ✓ MaxGraphSQL;n=65536 (28610ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run72.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run72.test new file mode 100644 index 0000000000000000000000000000000000000000..c1ea4f4efe7ebba628c93ce0ce28e195b61bd5be --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run72.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2174ms) + ✓ MaxGraphSQL;n=32 (2284ms) + ✓ MaxGraphSQL;n=64 (3486ms) + ✓ MaxGraphSQL;n=128 (2020ms) + ✓ MaxGraphSQL;n=256 (1729ms) + ✓ MaxGraphSQL;n=512 (1724ms) + ✓ MaxGraphSQL;n=1024 (1749ms) + ✓ MaxGraphSQL;n=2048 (1812ms) + ✓ MaxGraphSQL;n=4096 (2064ms) + ✓ MaxGraphSQL;n=8192 (2405ms) + ✓ MaxGraphSQL;n=16384 (3856ms) + ✓ MaxGraphSQL;n=32768 (9296ms) + ✓ MaxGraphSQL;n=65536 (29721ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run73.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run73.test new file mode 100644 index 0000000000000000000000000000000000000000..70d60da474ed3842333bc2a4799e6a3939d6abc1 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run73.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2132ms) + ✓ MaxGraphSQL;n=32 (2150ms) + ✓ MaxGraphSQL;n=64 (3517ms) + ✓ MaxGraphSQL;n=128 (1811ms) + ✓ MaxGraphSQL;n=256 (1647ms) + ✓ MaxGraphSQL;n=512 (1647ms) + ✓ MaxGraphSQL;n=1024 (1676ms) + ✓ MaxGraphSQL;n=2048 (1747ms) + ✓ MaxGraphSQL;n=4096 (1894ms) + ✓ MaxGraphSQL;n=8192 (2316ms) + ✓ MaxGraphSQL;n=16384 (3676ms) + ✓ MaxGraphSQL;n=32768 (8132ms) + ✓ MaxGraphSQL;n=65536 (28033ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run74.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run74.test new file mode 100644 index 0000000000000000000000000000000000000000..15ac0c450587b48c3efe9bb7bc91673c1087d5cc --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run74.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2222ms) + ✓ MaxGraphSQL;n=32 (2246ms) + ✓ MaxGraphSQL;n=64 (3385ms) + ✓ MaxGraphSQL;n=128 (2078ms) + ✓ MaxGraphSQL;n=256 (1648ms) + ✓ MaxGraphSQL;n=512 (1587ms) + ✓ MaxGraphSQL;n=1024 (1621ms) + ✓ MaxGraphSQL;n=2048 (1692ms) + ✓ MaxGraphSQL;n=4096 (1841ms) + ✓ MaxGraphSQL;n=8192 (2281ms) + ✓ MaxGraphSQL;n=16384 (3529ms) + ✓ MaxGraphSQL;n=32768 (8269ms) + ✓ MaxGraphSQL;n=65536 (29825ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run75.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run75.test new file mode 100644 index 0000000000000000000000000000000000000000..9262d5a3d7afcc6a69f09adc87fc892dc7ea5fc0 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run75.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2119ms) + ✓ MaxGraphSQL;n=32 (1959ms) + ✓ MaxGraphSQL;n=64 (2903ms) + ✓ MaxGraphSQL;n=128 (1917ms) + ✓ MaxGraphSQL;n=256 (1530ms) + ✓ MaxGraphSQL;n=512 (1526ms) + ✓ MaxGraphSQL;n=1024 (1559ms) + ✓ MaxGraphSQL;n=2048 (1603ms) + ✓ MaxGraphSQL;n=4096 (1760ms) + ✓ MaxGraphSQL;n=8192 (2150ms) + ✓ MaxGraphSQL;n=16384 (3578ms) + ✓ MaxGraphSQL;n=32768 (8704ms) + ✓ MaxGraphSQL;n=65536 (25318ms) + + + 13 passing (57s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run76.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run76.test new file mode 100644 index 0000000000000000000000000000000000000000..71045e8cfea9e9b057a56447d12cd03064c438aa --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run76.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2100ms) + ✓ MaxGraphSQL;n=32 (1541ms) + ✓ MaxGraphSQL;n=64 (1531ms) + ✓ MaxGraphSQL;n=128 (1544ms) + ✓ MaxGraphSQL;n=256 (1584ms) + ✓ MaxGraphSQL;n=512 (1617ms) + ✓ MaxGraphSQL;n=1024 (1566ms) + ✓ MaxGraphSQL;n=2048 (1644ms) + ✓ MaxGraphSQL;n=4096 (1776ms) + ✓ MaxGraphSQL;n=8192 (5713ms) + ✓ MaxGraphSQL;n=16384 (3600ms) + ✓ MaxGraphSQL;n=32768 (8353ms) + ✓ MaxGraphSQL;n=65536 (32168ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run77.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run77.test new file mode 100644 index 0000000000000000000000000000000000000000..df1b9c17ab2b2549acaff87c1b21da8b449ed934 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run77.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2371ms) + ✓ MaxGraphSQL;n=32 (2466ms) + ✓ MaxGraphSQL;n=64 (3366ms) + ✓ MaxGraphSQL;n=128 (1795ms) + ✓ MaxGraphSQL;n=256 (1641ms) + ✓ MaxGraphSQL;n=512 (1637ms) + ✓ MaxGraphSQL;n=1024 (1670ms) + ✓ MaxGraphSQL;n=2048 (1734ms) + ✓ MaxGraphSQL;n=4096 (1881ms) + ✓ MaxGraphSQL;n=8192 (2263ms) + ✓ MaxGraphSQL;n=16384 (3756ms) + ✓ MaxGraphSQL;n=32768 (8708ms) + ✓ MaxGraphSQL;n=65536 (29972ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run78.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run78.test new file mode 100644 index 0000000000000000000000000000000000000000..d211297a0e7eb859b86941fe4f9db0bdd1a83fc0 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run78.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2199ms) + ✓ MaxGraphSQL;n=32 (1645ms) + ✓ MaxGraphSQL;n=64 (1637ms) + ✓ MaxGraphSQL;n=128 (1679ms) + ✓ MaxGraphSQL;n=256 (1780ms) + ✓ MaxGraphSQL;n=512 (1933ms) + ✓ MaxGraphSQL;n=1024 (2944ms) + ✓ MaxGraphSQL;n=2048 (3138ms) + ✓ MaxGraphSQL;n=4096 (1973ms) + ✓ MaxGraphSQL;n=8192 (2391ms) + ✓ MaxGraphSQL;n=16384 (3962ms) + ✓ MaxGraphSQL;n=32768 (9545ms) + ✓ MaxGraphSQL;n=65536 (27105ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run79.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run79.test new file mode 100644 index 0000000000000000000000000000000000000000..65797889e362381f7256f1bce2074dfbb6ca827d --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run79.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2232ms) + ✓ MaxGraphSQL;n=32 (2133ms) + ✓ MaxGraphSQL;n=64 (3132ms) + ✓ MaxGraphSQL;n=128 (1743ms) + ✓ MaxGraphSQL;n=256 (1594ms) + ✓ MaxGraphSQL;n=512 (1593ms) + ✓ MaxGraphSQL;n=1024 (1617ms) + ✓ MaxGraphSQL;n=2048 (1685ms) + ✓ MaxGraphSQL;n=4096 (1848ms) + ✓ MaxGraphSQL;n=8192 (2280ms) + ✓ MaxGraphSQL;n=16384 (3817ms) + ✓ MaxGraphSQL;n=32768 (9441ms) + ✓ MaxGraphSQL;n=65536 (31133ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run8.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..0bff00deac9f16c75e5af61aa446326a1a9dc8e9 --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run8.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2215ms) + ✓ MaxGraphSQL;n=32 (2215ms) + ✓ MaxGraphSQL;n=64 (3582ms) + ✓ MaxGraphSQL;n=128 (1749ms) + ✓ MaxGraphSQL;n=256 (1597ms) + ✓ MaxGraphSQL;n=512 (1597ms) + ✓ MaxGraphSQL;n=1024 (1617ms) + ✓ MaxGraphSQL;n=2048 (1685ms) + ✓ MaxGraphSQL;n=4096 (1834ms) + ✓ MaxGraphSQL;n=8192 (2215ms) + ✓ MaxGraphSQL;n=16384 (3708ms) + ✓ MaxGraphSQL;n=32768 (8618ms) + ✓ MaxGraphSQL;n=65536 (30212ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run80.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run80.test new file mode 100644 index 0000000000000000000000000000000000000000..8e7e5dbd8a18cc664495381c65c10a96ab8852ea --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run80.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2089ms) + ✓ MaxGraphSQL;n=32 (1959ms) + ✓ MaxGraphSQL;n=64 (2855ms) + ✓ MaxGraphSQL;n=128 (1817ms) + ✓ MaxGraphSQL;n=256 (1622ms) + ✓ MaxGraphSQL;n=512 (1478ms) + ✓ MaxGraphSQL;n=1024 (1486ms) + ✓ MaxGraphSQL;n=2048 (1559ms) + ✓ MaxGraphSQL;n=4096 (1704ms) + ✓ MaxGraphSQL;n=8192 (2073ms) + ✓ MaxGraphSQL;n=16384 (3485ms) + ✓ MaxGraphSQL;n=32768 (8168ms) + ✓ MaxGraphSQL;n=65536 (27915ms) + + + 13 passing (59s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run9.test b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..a2277da3e96a7c039e8eda301e098cf491f19bbf --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/experiments2-linear248/run9.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ MaxGraphSQL;n=16 (2132ms) + ✓ MaxGraphSQL;n=32 (2020ms) + ✓ MaxGraphSQL;n=64 (2928ms) + ✓ MaxGraphSQL;n=128 (2129ms) + ✓ MaxGraphSQL;n=256 (1702ms) + ✓ MaxGraphSQL;n=512 (1695ms) + ✓ MaxGraphSQL;n=1024 (1766ms) + ✓ MaxGraphSQL;n=2048 (1779ms) + ✓ MaxGraphSQL;n=4096 (1927ms) + ✓ MaxGraphSQL;n=8192 (2302ms) + ✓ MaxGraphSQL;n=16384 (3867ms) + ✓ MaxGraphSQL;n=32768 (9576ms) + ✓ MaxGraphSQL;n=65536 (31772ms) + + + 13 passing (1m) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments2-linear248/mean_by_linear248.res b/experiments/develop_processed_experiments2-linear248/mean_by_linear248.res new file mode 100644 index 0000000000000000000000000000000000000000..c8c7d957617f66097de4d86c70760d781cec3fdc --- /dev/null +++ b/experiments/develop_processed_experiments2-linear248/mean_by_linear248.res @@ -0,0 +1,13 @@ +16 2143.94 +32 1848.56 +64 2377.15 +128 1741.08 +256 1610.47 +512 1616.2 +1024 1681.08 +2048 1862.39 +4096 1898.59 +8192 2433.85 +16384 3676.32 +32768 8586.03 +65536 28076.81 diff --git a/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..2f6b57523d53987a9e8c9e6c456b982993ed4d0d --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 125.94 +Mediana = 128 +Variancia = 139.85 +Desvio Padrao = 11.83 +Coef. Variacao = 0.09 +Min = 100 +Max = 151 +Esq, Dir. = 124.166 , 127.7174 diff --git a/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b1e32880ba95df052ee6d46aa2bf8989e90d5954 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/1024-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +1024 118 +1024 122 +1024 128 +1024 119 +1024 120 +1024 129 +1024 133 +1024 107 +1024 123 +1024 108 +1024 120 +1024 108 +1024 148 +1024 135 +1024 105 +1024 118 +1024 142 +1024 117 +1024 102 +1024 121 +1024 137 +1024 102 +1024 144 +1024 133 +1024 138 +1024 123 +1024 120 +1024 125 +1024 134 +1024 129 +1024 117 +1024 119 +1024 146 +1024 140 +1024 135 +1024 115 +1024 133 +1024 117 +1024 125 +1024 133 +1024 149 +1024 129 +1024 121 +1024 132 +1024 141 +1024 129 +1024 116 +1024 128 +1024 122 +1024 118 +1024 103 +1024 150 +1024 124 +1024 128 +1024 105 +1024 125 +1024 119 +1024 104 +1024 121 +1024 133 +1024 133 +1024 125 +1024 129 +1024 124 +1024 140 +1024 128 +1024 131 +1024 129 +1024 118 +1024 133 +1024 137 +1024 144 +1024 117 +1024 131 +1024 145 +1024 100 +1024 129 +1024 123 +1024 129 +1024 129 +1024 121 +1024 142 +1024 119 +1024 130 +1024 145 +1024 130 +1024 132 +1024 135 +1024 131 +1024 136 +1024 124 +1024 124 +1024 134 +1024 135 +1024 133 +1024 128 +1024 128 +1024 143 +1024 138 +1024 137 +1024 119 +1024 121 +1024 117 +1024 126 +1024 101 +1024 112 +1024 117 +1024 151 +1024 126 +1024 122 +1024 137 +1024 116 +1024 104 +1024 130 +1024 102 +1024 101 +1024 141 +1024 129 +1024 120 +1024 117 diff --git a/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..38cf4bf9a0b9df5f6b671690e0e585c0c30ee415 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 6.69 +Mediana = 7 +Variancia = 0.32 +Desvio Padrao = 0.56 +Coef. Variacao = 0.08 +Min = 6 +Max = 9 +Esq, Dir. = 6.6073 , 6.7761 diff --git a/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..bcd9fc2480b2ea8d3e0be4665fd21aeb0961314b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/128-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +128 7 +128 7 +128 6 +128 7 +128 7 +128 6 +128 7 +128 7 +128 7 +128 7 +128 6 +128 7 +128 7 +128 7 +128 6 +128 8 +128 6 +128 6 +128 7 +128 7 +128 6 +128 7 +128 7 +128 8 +128 7 +128 7 +128 6 +128 7 +128 7 +128 7 +128 8 +128 7 +128 6 +128 7 +128 6 +128 7 +128 6 +128 7 +128 6 +128 7 +128 6 +128 6 +128 7 +128 7 +128 7 +128 7 +128 6 +128 7 +128 6 +128 7 +128 7 +128 6 +128 7 +128 6 +128 7 +128 6 +128 6 +128 7 +128 6 +128 7 +128 7 +128 6 +128 7 +128 7 +128 7 +128 7 +128 6 +128 6 +128 7 +128 6 +128 7 +128 6 +128 7 +128 7 +128 7 +128 7 +128 6 +128 6 +128 7 +128 7 +128 6 +128 7 +128 6 +128 7 +128 7 +128 6 +128 7 +128 6 +128 7 +128 7 +128 7 +128 7 +128 6 +128 7 +128 7 +128 6 +128 6 +128 7 +128 6 +128 7 +128 7 +128 7 +128 6 +128 7 +128 6 +128 6 +128 7 +128 7 +128 6 +128 6 +128 7 +128 7 +128 7 +128 7 +128 6 +128 7 +128 7 +128 9 +128 7 +128 7 diff --git a/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..ef5156fcb1c36a7f0a11a3991984e2ca95ac177e --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 3.19 +Mediana = 3 +Variancia = 0.46 +Desvio Padrao = 0.68 +Coef. Variacao = 0.21 +Min = 2 +Max = 7 +Esq, Dir. = 3.09 , 3.2934 diff --git a/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..55dcb52744a91a3f2f99b741d5578e121b35118c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/16-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +16 3 +16 3 +16 4 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 4 +16 7 +16 3 +16 3 +16 2 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 4 +16 3 +16 4 +16 3 +16 3 +16 4 +16 3 +16 3 +16 3 +16 4 +16 4 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 7 +16 3 +16 2 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 2 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 3 +16 3 +16 3 +16 3 +16 4 +16 3 +16 3 +16 5 +16 4 +16 4 +16 2 +16 3 +16 3 +16 3 +16 3 +16 3 +16 2 +16 3 +16 3 +16 4 +16 3 diff --git a/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..bf2a90bc9b45a4da3db4fa9f5133c5ac8d68f6ed --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 2489.75 +Mediana = 2497 +Variancia = 25042.83 +Desvio Padrao = 158.25 +Coef. Variacao = 0.06 +Min = 2071 +Max = 2776 +Esq, Dir. = 2465.9883 , 2513.5117 diff --git a/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..5efc7d47e41c767b4d49fe4a9ffb8bf859ac16ee --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/16384-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +16384 2644 +16384 2411 +16384 2479 +16384 2497 +16384 2394 +16384 2746 +16384 2724 +16384 2305 +16384 2425 +16384 2535 +16384 2401 +16384 2607 +16384 2527 +16384 2127 +16384 2449 +16384 2698 +16384 2717 +16384 2426 +16384 2404 +16384 2377 +16384 2244 +16384 2426 +16384 2704 +16384 2401 +16384 2147 +16384 2723 +16384 2515 +16384 2509 +16384 2195 +16384 2532 +16384 2343 +16384 2352 +16384 2573 +16384 2144 +16384 2605 +16384 2312 +16384 2497 +16384 2355 +16384 2551 +16384 2768 +16384 2739 +16384 2548 +16384 2262 +16384 2606 +16384 2410 +16384 2568 +16384 2746 +16384 2456 +16384 2491 +16384 2365 +16384 2433 +16384 2555 +16384 2541 +16384 2579 +16384 2374 +16384 2481 +16384 2469 +16384 2525 +16384 2534 +16384 2413 +16384 2472 +16384 2630 +16384 2609 +16384 2638 +16384 2526 +16384 2476 +16384 2627 +16384 2482 +16384 2071 +16384 2589 +16384 2552 +16384 2687 +16384 2238 +16384 2598 +16384 2563 +16384 2380 +16384 2540 +16384 2557 +16384 2494 +16384 2637 +16384 2557 +16384 2687 +16384 2644 +16384 2564 +16384 2438 +16384 2398 +16384 2652 +16384 2776 +16384 2437 +16384 2577 +16384 2647 +16384 2589 +16384 2479 +16384 2487 +16384 2645 +16384 2701 +16384 2491 +16384 2448 +16384 2597 +16384 2325 +16384 2241 +16384 2372 +16384 2266 +16384 2701 +16384 2603 +16384 2265 +16384 2338 +16384 2200 +16384 2210 +16384 2488 +16384 2461 +16384 2190 +16384 2601 +16384 2685 +16384 2567 +16384 2373 +16384 2660 +16384 2605 +16384 2101 +16384 2454 diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run1.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..a134dee025b6113df6f516ed8bd40575d5607c49 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run1.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (123ms) + ✓ LayoutSQL;n=2048 (162ms) + ✓ LayoutSQL;n=4096 (362ms) + ✓ LayoutSQL;n=8192 (871ms) + ✓ LayoutSQL;n=16384 (2557ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7730ms) + ✓ LayoutSQL;n=65536 (27001ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run10.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..950c1611b2df7f98392ff5f9d52aae478231b6c2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run10.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (145ms) + ✓ LayoutSQL;n=4096 (331ms) + ✓ LayoutSQL;n=8192 (783ms) + ✓ LayoutSQL;n=16384 (2238ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6926ms) + ✓ LayoutSQL;n=65536 (24348ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (35s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run101.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run101.test new file mode 100644 index 0000000000000000000000000000000000000000..5cc228bd510406c66a8d0749cd2a2fb4d217915a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run101.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (154ms) + ✓ LayoutSQL;n=4096 (344ms) + ✓ LayoutSQL;n=8192 (799ms) + ✓ LayoutSQL;n=16384 (2338ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7009ms) + ✓ LayoutSQL;n=65536 (24497ms) + + Article experiments + ✓ LayoutSQL;n=16 (5ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (35s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run102.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run102.test new file mode 100644 index 0000000000000000000000000000000000000000..b59106ecebad9fe11b67ff340206cec338952ea2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run102.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (128ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (368ms) + ✓ LayoutSQL;n=8192 (856ms) + ✓ LayoutSQL;n=16384 (2491ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7759ms) + ✓ LayoutSQL;n=65536 (27541ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run103.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run103.test new file mode 100644 index 0000000000000000000000000000000000000000..eb1810bc75817115eb7c241d03aaa72a38ed23be --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run103.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (126ms) + ✓ LayoutSQL;n=2048 (150ms) + ✓ LayoutSQL;n=4096 (331ms) + ✓ LayoutSQL;n=8192 (766ms) + ✓ LayoutSQL;n=16384 (2210ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6662ms) + ✓ LayoutSQL;n=65536 (23519ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (34s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run104.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run104.test new file mode 100644 index 0000000000000000000000000000000000000000..e29072290e7a336e374a4b15e65024ac6f46c697 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run104.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (121ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (349ms) + ✓ LayoutSQL;n=8192 (825ms) + ✓ LayoutSQL;n=16384 (2377ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8379ms) + ✓ LayoutSQL;n=65536 (30250ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (43s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run105.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run105.test new file mode 100644 index 0000000000000000000000000000000000000000..66efce5ffc39213633f58c88c2f2bf270df9d4a5 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run105.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (131ms) + ✓ LayoutSQL;n=2048 (167ms) + ✓ LayoutSQL;n=4096 (369ms) + ✓ LayoutSQL;n=8192 (891ms) + ✓ LayoutSQL;n=16384 (2598ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7906ms) + ✓ LayoutSQL;n=65536 (28110ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run106.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run106.test new file mode 100644 index 0000000000000000000000000000000000000000..7972477e16358b2ad67a56f92c354e91d75271b6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run106.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (124ms) + ✓ LayoutSQL;n=2048 (168ms) + ✓ LayoutSQL;n=4096 (387ms) + ✓ LayoutSQL;n=8192 (902ms) + ✓ LayoutSQL;n=16384 (2638ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8282ms) + ✓ LayoutSQL;n=65536 (29349ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run107.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run107.test new file mode 100644 index 0000000000000000000000000000000000000000..02bbaffd35eabd8988362fbd84e214ebdd6ae6b0 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run107.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (174ms) + ✓ LayoutSQL;n=4096 (399ms) + ✓ LayoutSQL;n=8192 (950ms) + ✓ LayoutSQL;n=16384 (2746ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8317ms) + ✓ LayoutSQL;n=65536 (29540ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run108.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run108.test new file mode 100644 index 0000000000000000000000000000000000000000..05f1788c77bbf0b59e5a2f5b193edefc7f06951a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run108.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (140ms) + ✓ LayoutSQL;n=2048 (173ms) + ✓ LayoutSQL;n=4096 (359ms) + ✓ LayoutSQL;n=8192 (747ms) + ✓ LayoutSQL;n=16384 (2144ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6483ms) + ✓ LayoutSQL;n=65536 (22667ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (33s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run109.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run109.test new file mode 100644 index 0000000000000000000000000000000000000000..e78c20b302dd20b572fd9b94f25ba8fadc35d8af --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run109.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (172ms) + ✓ LayoutSQL;n=4096 (384ms) + ✓ LayoutSQL;n=8192 (929ms) + ✓ LayoutSQL;n=16384 (2609ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7722ms) + ✓ LayoutSQL;n=65536 (27199ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (27ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run11.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..b1c6dd0682dbd39b9d698c3aa8fd50207a317fa1 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run11.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (120ms) + ✓ LayoutSQL;n=2048 (147ms) + ✓ LayoutSQL;n=4096 (331ms) + ✓ LayoutSQL;n=8192 (744ms) + ✓ LayoutSQL;n=16384 (2101ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7155ms) + ✓ LayoutSQL;n=65536 (25593ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run110.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run110.test new file mode 100644 index 0000000000000000000000000000000000000000..b1be3e24ba384105709140f9468fdab7d92bdd06 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run110.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (353ms) + ✓ LayoutSQL;n=8192 (857ms) + ✓ LayoutSQL;n=16384 (2413ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7424ms) + ✓ LayoutSQL;n=65536 (26025ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run111.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run111.test new file mode 100644 index 0000000000000000000000000000000000000000..af09d4413626168e998bae62b5c32ad055b899b6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run111.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (119ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (364ms) + ✓ LayoutSQL;n=8192 (855ms) + ✓ LayoutSQL;n=16384 (2497ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7813ms) + ✓ LayoutSQL;n=65536 (27931ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run112.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run112.test new file mode 100644 index 0000000000000000000000000000000000000000..27cd4ced0766ca560187e9b43d03193e87d620a9 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run112.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (135ms) + ✓ LayoutSQL;n=2048 (158ms) + ✓ LayoutSQL;n=4096 (313ms) + ✓ LayoutSQL;n=8192 (748ms) + ✓ LayoutSQL;n=16384 (2127ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6459ms) + ✓ LayoutSQL;n=65536 (22472ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (32s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run113.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run113.test new file mode 100644 index 0000000000000000000000000000000000000000..e57c1b2f3471398a1fdfdaa49100f0abbde24022 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run113.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (145ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (373ms) + ✓ LayoutSQL;n=8192 (881ms) + ✓ LayoutSQL;n=16384 (2563ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7733ms) + ✓ LayoutSQL;n=65536 (27372ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (23ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run114.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run114.test new file mode 100644 index 0000000000000000000000000000000000000000..5d305e543ca0c4764378715b68e1fdd9ae4fd2a1 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run114.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (149ms) + ✓ LayoutSQL;n=2048 (175ms) + ✓ LayoutSQL;n=4096 (392ms) + ✓ LayoutSQL;n=8192 (923ms) + ✓ LayoutSQL;n=16384 (2739ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8263ms) + ✓ LayoutSQL;n=65536 (28896ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (28ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run115.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run115.test new file mode 100644 index 0000000000000000000000000000000000000000..5640198e2090a73347f5ce17fc6ddca30cd3940b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run115.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (151ms) + ✓ LayoutSQL;n=4096 (337ms) + ✓ LayoutSQL;n=8192 (780ms) + ✓ LayoutSQL;n=16384 (2355ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7515ms) + ✓ LayoutSQL;n=65536 (26365ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (28ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run116.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run116.test new file mode 100644 index 0000000000000000000000000000000000000000..3a42f0331aa9337e8371bf6653afa467a9d71e1c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run116.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (130ms) + ✓ LayoutSQL;n=2048 (167ms) + ✓ LayoutSQL;n=4096 (408ms) + ✓ LayoutSQL;n=8192 (863ms) + ✓ LayoutSQL;n=16384 (2564ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7900ms) + ✓ LayoutSQL;n=65536 (27901ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run117.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run117.test new file mode 100644 index 0000000000000000000000000000000000000000..57050821d87fa0df5d8d70ef46cb49a81138a2b4 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run117.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (135ms) + ✓ LayoutSQL;n=2048 (189ms) + ✓ LayoutSQL;n=4096 (362ms) + ✓ LayoutSQL;n=8192 (878ms) + ✓ LayoutSQL;n=16384 (2605ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8201ms) + ✓ LayoutSQL;n=65536 (29274ms) + + Article experiments + ✓ LayoutSQL;n=16 (2ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run118.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run118.test new file mode 100644 index 0000000000000000000000000000000000000000..3a6e2dbbf755ec735ed7537b382dbb603025598c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run118.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (121ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (358ms) + ✓ LayoutSQL;n=8192 (880ms) + ✓ LayoutSQL;n=16384 (2534ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7723ms) + ✓ LayoutSQL;n=65536 (27450ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run119.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run119.test new file mode 100644 index 0000000000000000000000000000000000000000..1c0daa811068153e0301f0cc222c78c217902ca6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run119.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (168ms) + ✓ LayoutSQL;n=4096 (371ms) + ✓ LayoutSQL;n=8192 (891ms) + ✓ LayoutSQL;n=16384 (2645ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8266ms) + ✓ LayoutSQL;n=65536 (29262ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run12.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..56e4c2d908c03c031dd13e651c4dec48089f7c03 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run12.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (119ms) + ✓ LayoutSQL;n=2048 (156ms) + ✓ LayoutSQL;n=4096 (355ms) + ✓ LayoutSQL;n=8192 (837ms) + ✓ LayoutSQL;n=16384 (2469ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7414ms) + ✓ LayoutSQL;n=65536 (25870ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run120.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run120.test new file mode 100644 index 0000000000000000000000000000000000000000..dbe539b0da9a723cb21beafa886be580e5bc3521 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run120.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (131ms) + ✓ LayoutSQL;n=2048 (182ms) + ✓ LayoutSQL;n=4096 (371ms) + ✓ LayoutSQL;n=8192 (893ms) + ✓ LayoutSQL;n=16384 (2627ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8247ms) + ✓ LayoutSQL;n=65536 (28986ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run121.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run121.test new file mode 100644 index 0000000000000000000000000000000000000000..2ed92429bbdc35cc69610f62726be5fee2d84215 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run121.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (378ms) + ✓ LayoutSQL;n=8192 (911ms) + ✓ LayoutSQL;n=16384 (2637ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8252ms) + ✓ LayoutSQL;n=65536 (29204ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run122.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run122.test new file mode 100644 index 0000000000000000000000000000000000000000..1415752dc9341555842bfe337d82284e765f89d0 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run122.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (141ms) + ✓ LayoutSQL;n=2048 (170ms) + ✓ LayoutSQL;n=4096 (387ms) + ✓ LayoutSQL;n=8192 (911ms) + ✓ LayoutSQL;n=16384 (2660ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8226ms) + ✓ LayoutSQL;n=65536 (29432ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run123.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run123.test new file mode 100644 index 0000000000000000000000000000000000000000..e78e5f0d19df50b61ef11639ab354f034d4296e9 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run123.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (361ms) + ✓ LayoutSQL;n=8192 (862ms) + ✓ LayoutSQL;n=16384 (2494ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7736ms) + ✓ LayoutSQL;n=65536 (27256ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run124.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run124.test new file mode 100644 index 0000000000000000000000000000000000000000..0eb6ebb8113d1b24c70107d52408b8ea30ba7be6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run124.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (104ms) + ✓ LayoutSQL;n=2048 (171ms) + ✓ LayoutSQL;n=4096 (391ms) + ✓ LayoutSQL;n=8192 (862ms) + ✓ LayoutSQL;n=16384 (2525ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7767ms) + ✓ LayoutSQL;n=65536 (27386ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run125.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run125.test new file mode 100644 index 0000000000000000000000000000000000000000..24c5b900fb1893745d8d1b30bdb01846c428f617 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run125.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (169ms) + ✓ LayoutSQL;n=4096 (380ms) + ✓ LayoutSQL;n=8192 (908ms) + ✓ LayoutSQL;n=16384 (2724ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8742ms) + ✓ LayoutSQL;n=65536 (30671ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (44s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run126.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run126.test new file mode 100644 index 0000000000000000000000000000000000000000..4f3f09ea776d2aa88ab1567c0135abb95f0eb3db --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run126.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (161ms) + ✓ LayoutSQL;n=4096 (364ms) + ✓ LayoutSQL;n=8192 (879ms) + ✓ LayoutSQL;n=16384 (2532ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7843ms) + ✓ LayoutSQL;n=65536 (27447ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run127.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run127.test new file mode 100644 index 0000000000000000000000000000000000000000..0d35958ade22db0b7f5666d125e3216c3e54d980 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run127.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (105ms) + ✓ LayoutSQL;n=2048 (194ms) + ✓ LayoutSQL;n=4096 (365ms) + ✓ LayoutSQL;n=8192 (843ms) + ✓ LayoutSQL;n=16384 (2449ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7613ms) + ✓ LayoutSQL;n=65536 (27230ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run128.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run128.test new file mode 100644 index 0000000000000000000000000000000000000000..092a2d03b4ab67ed613280e9a4153f0c7b5d38aa --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run128.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (141ms) + ✓ LayoutSQL;n=2048 (155ms) + ✓ LayoutSQL;n=4096 (354ms) + ✓ LayoutSQL;n=8192 (831ms) + ✓ LayoutSQL;n=16384 (2410ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7686ms) + ✓ LayoutSQL;n=65536 (26808ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run129.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run129.test new file mode 100644 index 0000000000000000000000000000000000000000..22f68b56e3e95c9fb198691a1d52929fa790aaa2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run129.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (107ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (367ms) + ✓ LayoutSQL;n=8192 (793ms) + ✓ LayoutSQL;n=16384 (2305ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7058ms) + ✓ LayoutSQL;n=65536 (25391ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run13.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..e94b37f3d75a5e16d4bfd042bc7c402b86c4b5b8 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run13.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (138ms) + ✓ LayoutSQL;n=2048 (167ms) + ✓ LayoutSQL;n=4096 (381ms) + ✓ LayoutSQL;n=8192 (876ms) + ✓ LayoutSQL;n=16384 (2597ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8192ms) + ✓ LayoutSQL;n=65536 (30643ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (43s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run130.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run130.test new file mode 100644 index 0000000000000000000000000000000000000000..f719fbc4761401708723eabac48e5c7b52e521b2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run130.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (118ms) + ✓ LayoutSQL;n=2048 (175ms) + ✓ LayoutSQL;n=4096 (413ms) + ✓ LayoutSQL;n=8192 (925ms) + ✓ LayoutSQL;n=16384 (2698ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8589ms) + ✓ LayoutSQL;n=65536 (30358ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (8ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (27ms) + + + 13 passing (43s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run131.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run131.test new file mode 100644 index 0000000000000000000000000000000000000000..06b46f5c3ff7b819d068c202785f81ef78a30d5b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run131.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (108ms) + ✓ LayoutSQL;n=2048 (175ms) + ✓ LayoutSQL;n=4096 (393ms) + ✓ LayoutSQL;n=8192 (872ms) + ✓ LayoutSQL;n=16384 (2535ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7845ms) + ✓ LayoutSQL;n=65536 (27618ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run132.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run132.test new file mode 100644 index 0000000000000000000000000000000000000000..de89cefc9b87d8aa3ce42db2e039b8910a8645c7 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run132.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (157ms) + ✓ LayoutSQL;n=4096 (357ms) + ✓ LayoutSQL;n=8192 (863ms) + ✓ LayoutSQL;n=16384 (2454ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7559ms) + ✓ LayoutSQL;n=65536 (27111ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run133.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run133.test new file mode 100644 index 0000000000000000000000000000000000000000..b4ac6426d2c0adaa97fe7d0e9115b6b525bb79f5 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run133.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (102ms) + ✓ LayoutSQL;n=2048 (192ms) + ✓ LayoutSQL;n=4096 (367ms) + ✓ LayoutSQL;n=8192 (893ms) + ✓ LayoutSQL;n=16384 (2567ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8074ms) + ✓ LayoutSQL;n=65536 (28610ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run134.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run134.test new file mode 100644 index 0000000000000000000000000000000000000000..2dca97da7ee14f5dd979b70ef9b3070bbe5f68a6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run134.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (116ms) + ✓ LayoutSQL;n=2048 (206ms) + ✓ LayoutSQL;n=4096 (386ms) + ✓ LayoutSQL;n=8192 (911ms) + ✓ LayoutSQL;n=16384 (2746ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8229ms) + ✓ LayoutSQL;n=65536 (29301ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run135.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run135.test new file mode 100644 index 0000000000000000000000000000000000000000..e723c9990b8759669b850d3def5559e06ce3dbcc --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run135.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (105ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (372ms) + ✓ LayoutSQL;n=8192 (829ms) + ✓ LayoutSQL;n=16384 (2374ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7235ms) + ✓ LayoutSQL;n=65536 (25558ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run136.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run136.test new file mode 100644 index 0000000000000000000000000000000000000000..f5cfbf5c2618352032963d4437638d4f74d55bbc --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run136.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (124ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (363ms) + ✓ LayoutSQL;n=8192 (867ms) + ✓ LayoutSQL;n=16384 (2541ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7908ms) + ✓ LayoutSQL;n=65536 (27782ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run137.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run137.test new file mode 100644 index 0000000000000000000000000000000000000000..9372403e79c35c3a7d6140090630a9e5e180aa89 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run137.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (102ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (369ms) + ✓ LayoutSQL;n=8192 (802ms) + ✓ LayoutSQL;n=16384 (2404ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7380ms) + ✓ LayoutSQL;n=65536 (26499ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run138.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run138.test new file mode 100644 index 0000000000000000000000000000000000000000..2c879b7ed186d0fe13e34ccc92b66f4e4dd2cb9b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run138.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (120ms) + ✓ LayoutSQL;n=2048 (196ms) + ✓ LayoutSQL;n=4096 (366ms) + ✓ LayoutSQL;n=8192 (854ms) + ✓ LayoutSQL;n=16384 (2515ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7644ms) + ✓ LayoutSQL;n=65536 (27119ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run139.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run139.test new file mode 100644 index 0000000000000000000000000000000000000000..0768e04f688bae2be7a977f333641e34131bcc88 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run139.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (135ms) + ✓ LayoutSQL;n=2048 (172ms) + ✓ LayoutSQL;n=4096 (388ms) + ✓ LayoutSQL;n=8192 (956ms) + ✓ LayoutSQL;n=16384 (2776ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8760ms) + ✓ LayoutSQL;n=65536 (30707ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (44s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run14.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..d7fc263d68de97dcd0215fb1771fe1f603aed683 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run14.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (123ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (371ms) + ✓ LayoutSQL;n=8192 (906ms) + ✓ LayoutSQL;n=16384 (2723ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8255ms) + ✓ LayoutSQL;n=65536 (28605ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run140.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run140.test new file mode 100644 index 0000000000000000000000000000000000000000..c026bf5ad1881b74d729ffc4630e900449e7d861 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run140.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (124ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (396ms) + ✓ LayoutSQL;n=8192 (914ms) + ✓ LayoutSQL;n=16384 (2647ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8194ms) + ✓ LayoutSQL;n=65536 (29014ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run15.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..d967deb7358e22d13fd64e5b86ac29a8f27fc385 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run15.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (118ms) + ✓ LayoutSQL;n=2048 (158ms) + ✓ LayoutSQL;n=4096 (352ms) + ✓ LayoutSQL;n=8192 (810ms) + ✓ LayoutSQL;n=16384 (2365ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7748ms) + ✓ LayoutSQL;n=65536 (27443ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (27ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run16.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..c47355177e620de77eeeeccc0a8fb95722b96f18 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run16.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (137ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (372ms) + ✓ LayoutSQL;n=8192 (860ms) + ✓ LayoutSQL;n=16384 (2461ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7516ms) + ✓ LayoutSQL;n=65536 (25959ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (28ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run17.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..3f1a8803b83ec4dc321d1e562d81a7f314b7ca8e --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run17.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (119ms) + ✓ LayoutSQL;n=2048 (152ms) + ✓ LayoutSQL;n=4096 (365ms) + ✓ LayoutSQL;n=8192 (861ms) + ✓ LayoutSQL;n=16384 (2644ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8312ms) + ✓ LayoutSQL;n=65536 (29406ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run18.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..25f0d5107e18efaf9904ea4d29cf315d4b9d2be9 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run18.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (154ms) + ✓ LayoutSQL;n=4096 (343ms) + ✓ LayoutSQL;n=8192 (802ms) + ✓ LayoutSQL;n=16384 (2266ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6641ms) + ✓ LayoutSQL;n=65536 (22914ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (33s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run181.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run181.test new file mode 100644 index 0000000000000000000000000000000000000000..6c8c996b8d94e6d37b3688b222fceef1fcdfecd3 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run181.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (108ms) + ✓ LayoutSQL;n=2048 (172ms) + ✓ LayoutSQL;n=4096 (401ms) + ✓ LayoutSQL;n=8192 (899ms) + ✓ LayoutSQL;n=16384 (2607ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8101ms) + ✓ LayoutSQL;n=65536 (28733ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run182.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run182.test new file mode 100644 index 0000000000000000000000000000000000000000..cff809ca9180b28dfdfdc8025147edac81c8a793 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run182.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (131ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (356ms) + ✓ LayoutSQL;n=8192 (845ms) + ✓ LayoutSQL;n=16384 (2437ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7277ms) + ✓ LayoutSQL;n=65536 (25402ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run183.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run183.test new file mode 100644 index 0000000000000000000000000000000000000000..d785331abb5ef0245f72b6105a3b3c0f3fd4595d --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run183.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (121ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (350ms) + ✓ LayoutSQL;n=8192 (814ms) + ✓ LayoutSQL;n=16384 (2372ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7178ms) + ✓ LayoutSQL;n=65536 (24964ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run184.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run184.test new file mode 100644 index 0000000000000000000000000000000000000000..200ffb9492132267a55b6734ea0c560964bbb38a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run184.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (125ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (376ms) + ✓ LayoutSQL;n=8192 (880ms) + ✓ LayoutSQL;n=16384 (2551ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7734ms) + ✓ LayoutSQL;n=65536 (27400ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run185.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run185.test new file mode 100644 index 0000000000000000000000000000000000000000..42e9c08d594e94e92a8cd74edfc615e5777a50fc --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run185.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (104ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (390ms) + ✓ LayoutSQL;n=8192 (899ms) + ✓ LayoutSQL;n=16384 (2601ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8178ms) + ✓ LayoutSQL;n=65536 (28457ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run186.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run186.test new file mode 100644 index 0000000000000000000000000000000000000000..1500ba6cef7148d8dbfd6c6dd8afdd5d3fac7efb --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run186.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (142ms) + ✓ LayoutSQL;n=2048 (186ms) + ✓ LayoutSQL;n=4096 (399ms) + ✓ LayoutSQL;n=8192 (892ms) + ✓ LayoutSQL;n=16384 (2717ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8158ms) + ✓ LayoutSQL;n=65536 (28082ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run187.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run187.test new file mode 100644 index 0000000000000000000000000000000000000000..96b3b160b205caf84d9e3a2b6e4cc94ed8415c13 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run187.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (102ms) + ✓ LayoutSQL;n=2048 (178ms) + ✓ LayoutSQL;n=4096 (356ms) + ✓ LayoutSQL;n=8192 (835ms) + ✓ LayoutSQL;n=16384 (2426ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7385ms) + ✓ LayoutSQL;n=65536 (25677ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run188.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run188.test new file mode 100644 index 0000000000000000000000000000000000000000..c503fdc2873840155f0529e492c5afe77fc80700 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run188.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (125ms) + ✓ LayoutSQL;n=2048 (163ms) + ✓ LayoutSQL;n=4096 (360ms) + ✓ LayoutSQL;n=8192 (845ms) + ✓ LayoutSQL;n=16384 (2481ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7603ms) + ✓ LayoutSQL;n=65536 (26874ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run189.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run189.test new file mode 100644 index 0000000000000000000000000000000000000000..1e98e39efd62cefbfdb6e86cdbd8d8df34694348 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run189.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (142ms) + ✓ LayoutSQL;n=2048 (166ms) + ✓ LayoutSQL;n=4096 (378ms) + ✓ LayoutSQL;n=8192 (913ms) + ✓ LayoutSQL;n=16384 (2687ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8303ms) + ✓ LayoutSQL;n=65536 (26107ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (34ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run19.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..d2a1e0fcf6280370f3160ad4bf946eb37d0bdbda --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run19.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (128ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (360ms) + ✓ LayoutSQL;n=8192 (851ms) + ✓ LayoutSQL;n=16384 (2479ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7442ms) + ✓ LayoutSQL;n=65536 (26113ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run190.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run190.test new file mode 100644 index 0000000000000000000000000000000000000000..da9ae72d25c9f56464cb7d2e1e96f3b532bd4c04 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run190.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (132ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (370ms) + ✓ LayoutSQL;n=8192 (886ms) + ✓ LayoutSQL;n=16384 (2606ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7981ms) + ✓ LayoutSQL;n=65536 (28083ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run191.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run191.test new file mode 100644 index 0000000000000000000000000000000000000000..352953190bc355cdf2bc36b4242b2c483ec733be --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run191.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (101ms) + ✓ LayoutSQL;n=2048 (158ms) + ✓ LayoutSQL;n=4096 (369ms) + ✓ LayoutSQL;n=8192 (821ms) + ✓ LayoutSQL;n=16384 (2373ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7195ms) + ✓ LayoutSQL;n=65536 (25170ms) + + Article experiments + ✓ LayoutSQL;n=16 (2ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run192.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run192.test new file mode 100644 index 0000000000000000000000000000000000000000..6f2ee3b01488c0a2741cbc5be5a14bb9be430165 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run192.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (173ms) + ✓ LayoutSQL;n=4096 (392ms) + ✓ LayoutSQL;n=8192 (934ms) + ✓ LayoutSQL;n=16384 (2401ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7175ms) + ✓ LayoutSQL;n=65536 (25015ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (8ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run193.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run193.test new file mode 100644 index 0000000000000000000000000000000000000000..d8f6a2ced1feff026270fadf250d1820622cadc1 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run193.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (100ms) + ✓ LayoutSQL;n=2048 (158ms) + ✓ LayoutSQL;n=4096 (368ms) + ✓ LayoutSQL;n=8192 (817ms) + ✓ LayoutSQL;n=16384 (2380ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7318ms) + ✓ LayoutSQL;n=65536 (26145ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run194.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run194.test new file mode 100644 index 0000000000000000000000000000000000000000..1eb4e0f7136b8e6253106b910b2831f8c60b5732 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run194.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (140ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (363ms) + ✓ LayoutSQL;n=8192 (880ms) + ✓ LayoutSQL;n=16384 (2526ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7604ms) + ✓ LayoutSQL;n=65536 (26573ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run195.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run195.test new file mode 100644 index 0000000000000000000000000000000000000000..b9f7ae061d61c2713c08eb8b03459ceb3aea660e --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run195.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (101ms) + ✓ LayoutSQL;n=2048 (169ms) + ✓ LayoutSQL;n=4096 (388ms) + ✓ LayoutSQL;n=8192 (876ms) + ✓ LayoutSQL;n=16384 (2603ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7905ms) + ✓ LayoutSQL;n=65536 (28271ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run196.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run196.test new file mode 100644 index 0000000000000000000000000000000000000000..5e7376287ffc7199c12d75da73cb2fb177c86976 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run196.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (103ms) + ✓ LayoutSQL;n=2048 (184ms) + ✓ LayoutSQL;n=4096 (355ms) + ✓ LayoutSQL;n=8192 (848ms) + ✓ LayoutSQL;n=16384 (2433ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7704ms) + ✓ LayoutSQL;n=65536 (27172ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run197.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run197.test new file mode 100644 index 0000000000000000000000000000000000000000..729c0c5d6e6ae7784e101b46acb53b6ae1895731 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run197.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (123ms) + ✓ LayoutSQL;n=2048 (154ms) + ✓ LayoutSQL;n=4096 (354ms) + ✓ LayoutSQL;n=8192 (833ms) + ✓ LayoutSQL;n=16384 (2425ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7549ms) + ✓ LayoutSQL;n=65536 (26128ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run198.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run198.test new file mode 100644 index 0000000000000000000000000000000000000000..7989be4c5131d337b00a7b95f27d91762d28ea51 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run198.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (370ms) + ✓ LayoutSQL;n=8192 (861ms) + ✓ LayoutSQL;n=16384 (2568ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7644ms) + ✓ LayoutSQL;n=65536 (26393ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run199.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run199.test new file mode 100644 index 0000000000000000000000000000000000000000..28795e2052cdb391921e9d998a0ce2d67e155dd1 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run199.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (155ms) + ✓ LayoutSQL;n=4096 (355ms) + ✓ LayoutSQL;n=8192 (860ms) + ✓ LayoutSQL;n=16384 (2482ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7788ms) + ✓ LayoutSQL;n=65536 (28086ms) + + Article experiments + ✓ LayoutSQL;n=16 (2ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run2.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..c56a9f3e7243908d3718858e1792b80ffdc0d170 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run2.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (137ms) + ✓ LayoutSQL;n=2048 (152ms) + ✓ LayoutSQL;n=4096 (340ms) + ✓ LayoutSQL;n=8192 (782ms) + ✓ LayoutSQL;n=16384 (2244ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6769ms) + ✓ LayoutSQL;n=65536 (23958ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (34s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run20.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..1cdfe90c423e47e5cba724fac094b5a1af552d45 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run20.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (120ms) + ✓ LayoutSQL;n=2048 (157ms) + ✓ LayoutSQL;n=4096 (350ms) + ✓ LayoutSQL;n=8192 (826ms) + ✓ LayoutSQL;n=16384 (2401ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7321ms) + ✓ LayoutSQL;n=65536 (26085ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run200.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run200.test new file mode 100644 index 0000000000000000000000000000000000000000..a25ed6a8edce5c65ff65748a862cc3cdbe234365 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run200.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (118ms) + ✓ LayoutSQL;n=2048 (200ms) + ✓ LayoutSQL;n=4096 (373ms) + ✓ LayoutSQL;n=8192 (886ms) + ✓ LayoutSQL;n=16384 (2644ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8400ms) + ✓ LayoutSQL;n=65536 (30538ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (23ms) + + + 13 passing (43s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run21.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run21.test new file mode 100644 index 0000000000000000000000000000000000000000..ad0a15c028d3c096a167f0cb22e452100625c5f6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run21.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (118ms) + ✓ LayoutSQL;n=2048 (148ms) + ✓ LayoutSQL;n=4096 (349ms) + ✓ LayoutSQL;n=8192 (734ms) + ✓ LayoutSQL;n=16384 (2071ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6929ms) + ✓ LayoutSQL;n=65536 (25575ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (27ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run22.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run22.test new file mode 100644 index 0000000000000000000000000000000000000000..056b5a4335621c75fc5ad2de59d16724578dda8d --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run22.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (134ms) + ✓ LayoutSQL;n=2048 (161ms) + ✓ LayoutSQL;n=4096 (358ms) + ✓ LayoutSQL;n=8192 (848ms) + ✓ LayoutSQL;n=16384 (2479ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7366ms) + ✓ LayoutSQL;n=65536 (25840ms) + + Article experiments + ✓ LayoutSQL;n=16 (2ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run23.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run23.test new file mode 100644 index 0000000000000000000000000000000000000000..1cfd06398b53b393289869066547b86f8c9d1dbb --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run23.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (134ms) + ✓ LayoutSQL;n=2048 (153ms) + ✓ LayoutSQL;n=4096 (340ms) + ✓ LayoutSQL;n=8192 (780ms) + ✓ LayoutSQL;n=16384 (2195ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6553ms) + ✓ LayoutSQL;n=65536 (22954ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (33s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run24.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run24.test new file mode 100644 index 0000000000000000000000000000000000000000..923f051830d3dfa289d2d4f50bd5bd35c0c221d3 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run24.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (138ms) + ✓ LayoutSQL;n=2048 (154ms) + ✓ LayoutSQL;n=4096 (346ms) + ✓ LayoutSQL;n=8192 (745ms) + ✓ LayoutSQL;n=16384 (2147ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6601ms) + ✓ LayoutSQL;n=65536 (22898ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (33s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run25.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run25.test new file mode 100644 index 0000000000000000000000000000000000000000..f36d1444e3d4407dfc545c5bfc6cb951ae2e0489 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run25.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (116ms) + ✓ LayoutSQL;n=2048 (155ms) + ✓ LayoutSQL;n=4096 (336ms) + ✓ LayoutSQL;n=8192 (781ms) + ✓ LayoutSQL;n=16384 (2190ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6686ms) + ✓ LayoutSQL;n=65536 (23356ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (34s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run26.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run26.test new file mode 100644 index 0000000000000000000000000000000000000000..fdd3cbf88d1a0d84d5d3c2d606710d93149966a2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run26.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (481ms) + ✓ LayoutSQL;n=8192 (964ms) + ✓ LayoutSQL;n=16384 (2426ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7238ms) + ✓ LayoutSQL;n=65536 (25499ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run27.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run27.test new file mode 100644 index 0000000000000000000000000000000000000000..89263f6faf50f80d65ffad3ed994d48d7515745c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run27.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (122ms) + ✓ LayoutSQL;n=2048 (161ms) + ✓ LayoutSQL;n=4096 (354ms) + ✓ LayoutSQL;n=8192 (849ms) + ✓ LayoutSQL;n=16384 (2488ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7605ms) + ✓ LayoutSQL;n=65536 (26178ms) + + Article experiments + ✓ LayoutSQL;n=16 (2ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run28.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run28.test new file mode 100644 index 0000000000000000000000000000000000000000..694d2737eae1e2e03c6aa3c435798dd4e3903dd2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run28.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (166ms) + ✓ LayoutSQL;n=4096 (373ms) + ✓ LayoutSQL;n=8192 (880ms) + ✓ LayoutSQL;n=16384 (2540ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7711ms) + ✓ LayoutSQL;n=65536 (25719ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run29.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run29.test new file mode 100644 index 0000000000000000000000000000000000000000..57a19a2afbaf55e761ca986defb727bd62116bbe --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run29.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (121ms) + ✓ LayoutSQL;n=2048 (152ms) + ✓ LayoutSQL;n=4096 (343ms) + ✓ LayoutSQL;n=8192 (784ms) + ✓ LayoutSQL;n=16384 (2262ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6833ms) + ✓ LayoutSQL;n=65536 (24160ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (35s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run3.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..7062fcf7a37372f6b6fb9bae7af38c6175090df0 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run3.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (137ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (355ms) + ✓ LayoutSQL;n=8192 (818ms) + ✓ LayoutSQL;n=16384 (2325ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6926ms) + ✓ LayoutSQL;n=65536 (24402ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (35s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run30.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run30.test new file mode 100644 index 0000000000000000000000000000000000000000..0d2513056aadcc581e714a1df62ca8c29751105e --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run30.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (166ms) + ✓ LayoutSQL;n=4096 (364ms) + ✓ LayoutSQL;n=8192 (864ms) + ✓ LayoutSQL;n=16384 (2472ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7357ms) + ✓ LayoutSQL;n=65536 (26255ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run31.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run31.test new file mode 100644 index 0000000000000000000000000000000000000000..0856f301fa2998d830a8c2c88027c023d5841854 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run31.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (137ms) + ✓ LayoutSQL;n=2048 (163ms) + ✓ LayoutSQL;n=4096 (375ms) + ✓ LayoutSQL;n=8192 (876ms) + ✓ LayoutSQL;n=16384 (2552ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7832ms) + ✓ LayoutSQL;n=65536 (27665ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (35ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run32.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run32.test new file mode 100644 index 0000000000000000000000000000000000000000..a204b37c58ced9d5bf38536d51f1e5039d8494c1 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run32.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (146ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (363ms) + ✓ LayoutSQL;n=8192 (876ms) + ✓ LayoutSQL;n=16384 (2573ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7805ms) + ✓ LayoutSQL;n=65536 (27834ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run33.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run33.test new file mode 100644 index 0000000000000000000000000000000000000000..991763b9aadae8cf1d0063c485034a9c743e71f8 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run33.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (130ms) + ✓ LayoutSQL;n=2048 (154ms) + ✓ LayoutSQL;n=4096 (346ms) + ✓ LayoutSQL;n=8192 (822ms) + ✓ LayoutSQL;n=16384 (2398ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7253ms) + ✓ LayoutSQL;n=65536 (25316ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run34.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run34.test new file mode 100644 index 0000000000000000000000000000000000000000..626e40752cf9aff9b20b3a75af20598866ca7f90 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run34.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (119ms) + ✓ LayoutSQL;n=2048 (153ms) + ✓ LayoutSQL;n=4096 (347ms) + ✓ LayoutSQL;n=8192 (795ms) + ✓ LayoutSQL;n=16384 (2241ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7222ms) + ✓ LayoutSQL;n=65536 (23552ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (35s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run35.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run35.test new file mode 100644 index 0000000000000000000000000000000000000000..b5298e50d15f8d6710a8ce541ac8df1d535e6b0d --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run35.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (151ms) + ✓ LayoutSQL;n=2048 (173ms) + ✓ LayoutSQL;n=4096 (395ms) + ✓ LayoutSQL;n=8192 (952ms) + ✓ LayoutSQL;n=16384 (2200ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6619ms) + ✓ LayoutSQL;n=65536 (22923ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (27ms) + + + 13 passing (34s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run36.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run36.test new file mode 100644 index 0000000000000000000000000000000000000000..90869039ff5c5de659e1f180e471ee21d057f288 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run36.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (143ms) + ✓ LayoutSQL;n=2048 (167ms) + ✓ LayoutSQL;n=4096 (399ms) + ✓ LayoutSQL;n=8192 (856ms) + ✓ LayoutSQL;n=16384 (2448ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7346ms) + ✓ LayoutSQL;n=65536 (25491ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (31ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run37.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run37.test new file mode 100644 index 0000000000000000000000000000000000000000..b835a087e6bfcb5b9b50be9517752a1831c1da0b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run37.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (119ms) + ✓ LayoutSQL;n=2048 (157ms) + ✓ LayoutSQL;n=4096 (351ms) + ✓ LayoutSQL;n=8192 (815ms) + ✓ LayoutSQL;n=16384 (2352ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7083ms) + ✓ LayoutSQL;n=65536 (24944ms) + + Article experiments + ✓ LayoutSQL;n=16 (7ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (36s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run38.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run38.test new file mode 100644 index 0000000000000000000000000000000000000000..2be0c53e4385a1afabf9a997078574ed0b0cbbad --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run38.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (150ms) + ✓ LayoutSQL;n=2048 (165ms) + ✓ LayoutSQL;n=4096 (374ms) + ✓ LayoutSQL;n=8192 (883ms) + ✓ LayoutSQL;n=16384 (2555ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7904ms) + ✓ LayoutSQL;n=65536 (27487ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run39.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run39.test new file mode 100644 index 0000000000000000000000000000000000000000..c1eed14c0f98e83a797597d1abe4e86cac9feb43 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run39.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (144ms) + ✓ LayoutSQL;n=2048 (167ms) + ✓ LayoutSQL;n=4096 (388ms) + ✓ LayoutSQL;n=8192 (930ms) + ✓ LayoutSQL;n=16384 (2704ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8400ms) + ✓ LayoutSQL;n=65536 (29085ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run4.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..b619485878944a5a670aae2a6831f0b640fe0b78 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run4.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (135ms) + ✓ LayoutSQL;n=2048 (155ms) + ✓ LayoutSQL;n=4096 (349ms) + ✓ LayoutSQL;n=8192 (864ms) + ✓ LayoutSQL;n=16384 (2487ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7721ms) + ✓ LayoutSQL;n=65536 (27442ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run40.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run40.test new file mode 100644 index 0000000000000000000000000000000000000000..19fad78563087065138142690938a43e396eea63 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run40.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (362ms) + ✓ LayoutSQL;n=8192 (849ms) + ✓ LayoutSQL;n=16384 (2497ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7779ms) + ✓ LayoutSQL;n=65536 (26981ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run5.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..3d03d2d29f5c41a7a65d9111ff8757ebe922ed56 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run5.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (117ms) + ✓ LayoutSQL;n=2048 (149ms) + ✓ LayoutSQL;n=4096 (342ms) + ✓ LayoutSQL;n=8192 (806ms) + ✓ LayoutSQL;n=16384 (2343ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7212ms) + ✓ LayoutSQL;n=65536 (25741ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (8ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (27ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run6.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..e05c7c604d8dd4454c08e70f30098b68a52bce5c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run6.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (161ms) + ✓ LayoutSQL;n=4096 (368ms) + ✓ LayoutSQL;n=8192 (872ms) + ✓ LayoutSQL;n=16384 (2548ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7818ms) + ✓ LayoutSQL;n=65536 (27074ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run61.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run61.test new file mode 100644 index 0000000000000000000000000000000000000000..d6d57620cd4d6164ebc6ce6137cab9703bc8d2a0 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run61.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (126ms) + ✓ LayoutSQL;n=2048 (175ms) + ✓ LayoutSQL;n=4096 (393ms) + ✓ LayoutSQL;n=8192 (920ms) + ✓ LayoutSQL;n=16384 (2701ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8254ms) + ✓ LayoutSQL;n=65536 (28964ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run62.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run62.test new file mode 100644 index 0000000000000000000000000000000000000000..377206d6b47d190e081bc61b72a9c3cd73bdf0a0 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run62.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (132ms) + ✓ LayoutSQL;n=2048 (167ms) + ✓ LayoutSQL;n=4096 (384ms) + ✓ LayoutSQL;n=8192 (900ms) + ✓ LayoutSQL;n=16384 (2652ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7954ms) + ✓ LayoutSQL;n=65536 (28219ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run63.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run63.test new file mode 100644 index 0000000000000000000000000000000000000000..5bddecaee15c22ccce9e08e8ac5d49d2fe40d11c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run63.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (122ms) + ✓ LayoutSQL;n=2048 (162ms) + ✓ LayoutSQL;n=4096 (356ms) + ✓ LayoutSQL;n=8192 (846ms) + ✓ LayoutSQL;n=16384 (2411ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7346ms) + ✓ LayoutSQL;n=65536 (25809ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run64.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run64.test new file mode 100644 index 0000000000000000000000000000000000000000..53d3a63434881622c5a20a335aa503236da269f2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run64.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (128ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (372ms) + ✓ LayoutSQL;n=8192 (891ms) + ✓ LayoutSQL;n=16384 (2579ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7934ms) + ✓ LayoutSQL;n=65536 (27866ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run65.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run65.test new file mode 100644 index 0000000000000000000000000000000000000000..ca7901ba6d0f79f40350c20fec83417011604ad8 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run65.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (174ms) + ✓ LayoutSQL;n=4096 (391ms) + ✓ LayoutSQL;n=8192 (936ms) + ✓ LayoutSQL;n=16384 (2768ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8482ms) + ✓ LayoutSQL;n=65536 (29877ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (43s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run66.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run66.test new file mode 100644 index 0000000000000000000000000000000000000000..8d00c81824810f2c7efba44a15fdb2530aca397b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run66.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (148ms) + ✓ LayoutSQL;n=2048 (173ms) + ✓ LayoutSQL;n=4096 (387ms) + ✓ LayoutSQL;n=8192 (891ms) + ✓ LayoutSQL;n=16384 (2527ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7740ms) + ✓ LayoutSQL;n=65536 (27179ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (33ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run67.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run67.test new file mode 100644 index 0000000000000000000000000000000000000000..806bcede9efe49a513b1c36fa2c9d76c842c422a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run67.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (128ms) + ✓ LayoutSQL;n=2048 (162ms) + ✓ LayoutSQL;n=4096 (359ms) + ✓ LayoutSQL;n=8192 (849ms) + ✓ LayoutSQL;n=16384 (2476ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7487ms) + ✓ LayoutSQL;n=65536 (26019ms) + + Article experiments + ✓ LayoutSQL;n=16 (7ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run68.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run68.test new file mode 100644 index 0000000000000000000000000000000000000000..006f2bef8722568b54bf63912b46b5d641f7fa17 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run68.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (129ms) + ✓ LayoutSQL;n=2048 (162ms) + ✓ LayoutSQL;n=4096 (372ms) + ✓ LayoutSQL;n=8192 (890ms) + ✓ LayoutSQL;n=16384 (2605ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8063ms) + ✓ LayoutSQL;n=65536 (28522ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (9ms) + ✓ LayoutSQL;n=256 (20ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run69.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run69.test new file mode 100644 index 0000000000000000000000000000000000000000..56655a3f2687a2c40593a004cfaaf14951d02b77 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run69.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (125ms) + ✓ LayoutSQL;n=2048 (166ms) + ✓ LayoutSQL;n=4096 (373ms) + ✓ LayoutSQL;n=8192 (882ms) + ✓ LayoutSQL;n=16384 (2509ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7754ms) + ✓ LayoutSQL;n=65536 (26956ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (28ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run7.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..31361a8b8e44e568c07a5144d6a43266595f9dc7 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run7.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (145ms) + ✓ LayoutSQL;n=2048 (157ms) + ✓ LayoutSQL;n=4096 (349ms) + ✓ LayoutSQL;n=8192 (843ms) + ✓ LayoutSQL;n=16384 (2438ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7364ms) + ✓ LayoutSQL;n=65536 (25839ms) + + Article experiments + ✓ LayoutSQL;n=16 (4ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run70.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run70.test new file mode 100644 index 0000000000000000000000000000000000000000..0f9cd099d12fee7f95ab44ca22cda442d316e59f --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run70.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (115ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (348ms) + ✓ LayoutSQL;n=8192 (812ms) + ✓ LayoutSQL;n=16384 (2312ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6939ms) + ✓ LayoutSQL;n=65536 (24319ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (35s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run71.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run71.test new file mode 100644 index 0000000000000000000000000000000000000000..1d2604e8d712fb106158f14a9800fb69b711fb72 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run71.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (125ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (365ms) + ✓ LayoutSQL;n=8192 (889ms) + ✓ LayoutSQL;n=16384 (2630ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8074ms) + ✓ LayoutSQL;n=65536 (28639ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run72.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run72.test new file mode 100644 index 0000000000000000000000000000000000000000..8e19e349dadc532e443fbde4fe4f2d9c8122421a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run72.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (144ms) + ✓ LayoutSQL;n=2048 (174ms) + ✓ LayoutSQL;n=4096 (391ms) + ✓ LayoutSQL;n=8192 (915ms) + ✓ LayoutSQL;n=16384 (2687ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8275ms) + ✓ LayoutSQL;n=65536 (29371ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run73.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run73.test new file mode 100644 index 0000000000000000000000000000000000000000..5329d3f92cef8ab423b7a3fe3c4a863a32034b0c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run73.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (120ms) + ✓ LayoutSQL;n=2048 (155ms) + ✓ LayoutSQL;n=4096 (348ms) + ✓ LayoutSQL;n=8192 (838ms) + ✓ LayoutSQL;n=16384 (2394ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7298ms) + ✓ LayoutSQL;n=65536 (25342ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (37s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run74.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run74.test new file mode 100644 index 0000000000000000000000000000000000000000..657efa536b9bf6a211130e24782fe987b50a1b1d --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run74.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (130ms) + ✓ LayoutSQL;n=2048 (164ms) + ✓ LayoutSQL;n=4096 (376ms) + ✓ LayoutSQL;n=8192 (909ms) + ✓ LayoutSQL;n=16384 (2685ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8391ms) + ✓ LayoutSQL;n=65536 (29332ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (26ms) + + + 13 passing (42s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run75.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run75.test new file mode 100644 index 0000000000000000000000000000000000000000..124ca4392369b02638c1f9d0f0720adba45497ef --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run75.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (128ms) + ✓ LayoutSQL;n=2048 (169ms) + ✓ LayoutSQL;n=4096 (377ms) + ✓ LayoutSQL;n=8192 (921ms) + ✓ LayoutSQL;n=16384 (2456ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7490ms) + ✓ LayoutSQL;n=65536 (26552ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (14ms) + ✓ LayoutSQL;n=512 (35ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run76.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run76.test new file mode 100644 index 0000000000000000000000000000000000000000..bcb1c8a808ec9d0a2ce6fba106ef105a0265d762 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run76.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (124ms) + ✓ LayoutSQL;n=2048 (166ms) + ✓ LayoutSQL;n=4096 (377ms) + ✓ LayoutSQL;n=8192 (881ms) + ✓ LayoutSQL;n=16384 (2589ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7996ms) + ✓ LayoutSQL;n=65536 (27983ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run77.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run77.test new file mode 100644 index 0000000000000000000000000000000000000000..09c8fa320f65fcc3f2bc972ae6cabafa0f6debfe --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run77.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (122ms) + ✓ LayoutSQL;n=2048 (161ms) + ✓ LayoutSQL;n=4096 (364ms) + ✓ LayoutSQL;n=8192 (869ms) + ✓ LayoutSQL;n=16384 (2491ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7571ms) + ✓ LayoutSQL;n=65536 (26416ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (38s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run78.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run78.test new file mode 100644 index 0000000000000000000000000000000000000000..36b9521f3a42381c63db1b190a649237c44393cd --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run78.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (112ms) + ✓ LayoutSQL;n=2048 (150ms) + ✓ LayoutSQL;n=4096 (333ms) + ✓ LayoutSQL;n=8192 (789ms) + ✓ LayoutSQL;n=16384 (2265ms) + + Article experiments + ✓ LayoutSQL;n=32768 (6686ms) + ✓ LayoutSQL;n=65536 (23342ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (34s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run79.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run79.test new file mode 100644 index 0000000000000000000000000000000000000000..05541ccc9e744cf02d7be21e3fe854b8c7727b71 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run79.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (121ms) + ✓ LayoutSQL;n=2048 (160ms) + ✓ LayoutSQL;n=4096 (362ms) + ✓ LayoutSQL;n=8192 (864ms) + ✓ LayoutSQL;n=16384 (2557ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7849ms) + ✓ LayoutSQL;n=65536 (27554ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (25ms) + + + 13 passing (40s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run8.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..147d0596170120de473fdbd86590cd2ccee81070 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run8.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (133ms) + ✓ LayoutSQL;n=2048 (168ms) + ✓ LayoutSQL;n=4096 (388ms) + ✓ LayoutSQL;n=8192 (914ms) + ✓ LayoutSQL;n=16384 (2589ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8081ms) + ✓ LayoutSQL;n=65536 (28761ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (3ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (32ms) + + + 13 passing (41s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run80.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run80.test new file mode 100644 index 0000000000000000000000000000000000000000..c27219b7fd9e6e3cdedcc0b1086793718107f77a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run80.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (128ms) + ✓ LayoutSQL;n=2048 (171ms) + ✓ LayoutSQL;n=4096 (387ms) + ✓ LayoutSQL;n=8192 (938ms) + ✓ LayoutSQL;n=16384 (2701ms) + + Article experiments + ✓ LayoutSQL;n=32768 (8463ms) + ✓ LayoutSQL;n=65536 (29708ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (4ms) + ✓ LayoutSQL;n=128 (6ms) + ✓ LayoutSQL;n=256 (13ms) + ✓ LayoutSQL;n=512 (24ms) + + + 13 passing (43s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run9.test b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..df2d06cea6f91a90028ef2fe116847ac046b3f14 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2018-10-11/experiments4-16-linear248/run9.test @@ -0,0 +1,35 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node --max_old_space_size=16384 node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutSQL;n=1024 (136ms) + ✓ LayoutSQL;n=2048 (159ms) + ✓ LayoutSQL;n=4096 (363ms) + ✓ LayoutSQL;n=8192 (882ms) + ✓ LayoutSQL;n=16384 (2577ms) + + Article experiments + ✓ LayoutSQL;n=32768 (7793ms) + ✓ LayoutSQL;n=65536 (27440ms) + + Article experiments + ✓ LayoutSQL;n=16 (3ms) + ✓ LayoutSQL;n=32 (2ms) + ✓ LayoutSQL;n=64 (3ms) + ✓ LayoutSQL;n=128 (7ms) + ✓ LayoutSQL;n=256 (12ms) + ✓ LayoutSQL;n=512 (30ms) + + + 13 passing (39s) + + +=============================== Coverage summary =============================== +Statements : 58.32% ( 596/1022 ) +Branches : 33.49% ( 143/427 ) +Functions : 55.05% ( 109/198 ) +Lines : 58.74% ( 568/967 ) +================================================================================ diff --git a/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..587107223863b0b1962b52d806f429f72f46873e --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 164.64 +Mediana = 164 +Variancia = 112.72 +Desvio Padrao = 10.62 +Coef. Variacao = 0.06 +Min = 145 +Max = 206 +Esq, Dir. = 163.0475 , 166.2358 diff --git a/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9304a76da5df794c5c67e7bedf93e50c10dc358d --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/2048-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +2048 200 +2048 162 +2048 160 +2048 160 +2048 155 +2048 174 +2048 169 +2048 159 +2048 154 +2048 175 +2048 157 +2048 172 +2048 173 +2048 158 +2048 194 +2048 175 +2048 186 +2048 165 +2048 165 +2048 159 +2048 152 +2048 178 +2048 167 +2048 173 +2048 154 +2048 160 +2048 196 +2048 166 +2048 153 +2048 161 +2048 149 +2048 157 +2048 164 +2048 173 +2048 189 +2048 164 +2048 164 +2048 151 +2048 165 +2048 174 +2048 175 +2048 161 +2048 152 +2048 164 +2048 155 +2048 159 +2048 206 +2048 169 +2048 161 +2048 158 +2048 184 +2048 165 +2048 165 +2048 164 +2048 159 +2048 163 +2048 156 +2048 171 +2048 160 +2048 159 +2048 166 +2048 160 +2048 172 +2048 168 +2048 164 +2048 162 +2048 182 +2048 155 +2048 148 +2048 168 +2048 163 +2048 174 +2048 145 +2048 167 +2048 164 +2048 158 +2048 166 +2048 162 +2048 165 +2048 165 +2048 160 +2048 166 +2048 152 +2048 167 +2048 157 +2048 154 +2048 167 +2048 172 +2048 165 +2048 159 +2048 165 +2048 166 +2048 161 +2048 155 +2048 168 +2048 171 +2048 164 +2048 167 +2048 167 +2048 159 +2048 153 +2048 160 +2048 154 +2048 175 +2048 169 +2048 150 +2048 154 +2048 173 +2048 150 +2048 161 +2048 164 +2048 155 +2048 165 +2048 164 +2048 192 +2048 158 +2048 170 +2048 162 +2048 147 +2048 157 diff --git a/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..86be1d1e470889486e92f26032ece4f258a878be --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 13.18 +Mediana = 13 +Variancia = 0.85 +Desvio Padrao = 0.92 +Coef. Variacao = 0.07 +Min = 12 +Max = 20 +Esq, Dir. = 13.0364 , 13.3136 diff --git a/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..58b5dfac61491da69246bc92c3c05a5beb2a389b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/256-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +256 12 +256 13 +256 13 +256 13 +256 13 +256 13 +256 13 +256 13 +256 14 +256 13 +256 13 +256 13 +256 13 +256 14 +256 13 +256 14 +256 13 +256 14 +256 13 +256 14 +256 14 +256 13 +256 12 +256 14 +256 13 +256 12 +256 12 +256 14 +256 14 +256 14 +256 14 +256 13 +256 13 +256 14 +256 12 +256 13 +256 12 +256 14 +256 13 +256 13 +256 12 +256 13 +256 13 +256 13 +256 14 +256 12 +256 12 +256 14 +256 12 +256 14 +256 13 +256 13 +256 14 +256 13 +256 14 +256 14 +256 14 +256 14 +256 13 +256 13 +256 13 +256 12 +256 14 +256 13 +256 13 +256 13 +256 12 +256 13 +256 13 +256 13 +256 14 +256 12 +256 13 +256 13 +256 12 +256 14 +256 13 +256 12 +256 14 +256 12 +256 12 +256 14 +256 13 +256 13 +256 13 +256 13 +256 13 +256 13 +256 13 +256 12 +256 13 +256 13 +256 12 +256 13 +256 14 +256 13 +256 13 +256 13 +256 13 +256 13 +256 13 +256 14 +256 13 +256 13 +256 12 +256 13 +256 13 +256 14 +256 14 +256 12 +256 14 +256 13 +256 13 +256 14 +256 13 +256 14 +256 14 +256 20 +256 14 +256 13 diff --git a/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..c686375648b807838b573729c11aac7dbf626a32 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 2.56 +Mediana = 3 +Variancia = 0.35 +Desvio Padrao = 0.59 +Coef. Variacao = 0.23 +Min = 2 +Max = 5 +Esq, Dir. = 2.4696 , 2.6471 diff --git a/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b93867f25a6dba0ea4e537e669bc9986ddf1736b --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/32-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +32 3 +32 3 +32 2 +32 2 +32 3 +32 3 +32 3 +32 2 +32 3 +32 3 +32 3 +32 3 +32 3 +32 2 +32 3 +32 3 +32 3 +32 3 +32 3 +32 3 +32 2 +32 3 +32 2 +32 3 +32 2 +32 2 +32 3 +32 3 +32 2 +32 2 +32 3 +32 3 +32 3 +32 2 +32 3 +32 2 +32 3 +32 2 +32 2 +32 3 +32 3 +32 3 +32 3 +32 2 +32 2 +32 2 +32 2 +32 3 +32 3 +32 3 +32 2 +32 3 +32 3 +32 2 +32 3 +32 2 +32 2 +32 3 +32 2 +32 3 +32 2 +32 2 +32 2 +32 3 +32 2 +32 5 +32 3 +32 3 +32 2 +32 3 +32 2 +32 2 +32 3 +32 2 +32 2 +32 3 +32 3 +32 3 +32 3 +32 2 +32 2 +32 2 +32 2 +32 3 +32 2 +32 3 +32 2 +32 3 +32 3 +32 2 +32 2 +32 2 +32 2 +32 2 +32 3 +32 2 +32 2 +32 3 +32 3 +32 2 +32 2 +32 3 +32 2 +32 2 +32 3 +32 2 +32 5 +32 3 +32 2 +32 2 +32 3 +32 3 +32 2 +32 3 +32 2 +32 2 +32 2 +32 2 +32 3 +32 3 diff --git a/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..be5d4fbb0cab42c6c9a096e2b3269a5e045961e6 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 7659.06 +Mediana = 7726.5 +Variancia = 277266.46 +Desvio Padrao = 526.56 +Coef. Variacao = 0.07 +Min = 6459 +Max = 8760 +Esq, Dir. = 7579.9931 , 7738.1235 diff --git a/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..ce9f9cd48c0f587d0230f811d7198d3f9ddb3212 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/32768-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +32768 8400 +32768 7346 +32768 7442 +32768 7813 +32768 7298 +32768 8317 +32768 8742 +32768 7058 +32768 7549 +32768 7845 +32768 7321 +32768 8101 +32768 7740 +32768 6459 +32768 7613 +32768 8589 +32768 8158 +32768 7238 +32768 7380 +32768 8379 +32768 6769 +32768 7385 +32768 8400 +32768 7175 +32768 6601 +32768 8255 +32768 7644 +32768 7754 +32768 6553 +32768 7843 +32768 7212 +32768 7083 +32768 7805 +32768 6483 +32768 8201 +32768 6939 +32768 7779 +32768 7515 +32768 7734 +32768 8482 +32768 8263 +32768 7818 +32768 6833 +32768 7981 +32768 7686 +32768 7644 +32768 8229 +32768 7490 +32768 7571 +32768 7748 +32768 7704 +32768 7904 +32768 7908 +32768 7934 +32768 7235 +32768 7603 +32768 7414 +32768 7767 +32768 7723 +32768 7424 +32768 7357 +32768 8074 +32768 7722 +32768 8282 +32768 7604 +32768 7487 +32768 8247 +32768 7788 +32768 6929 +32768 8081 +32768 7832 +32768 8275 +32768 6926 +32768 7906 +32768 7733 +32768 7318 +32768 7711 +32768 7730 +32768 7736 +32768 8252 +32768 7849 +32768 8303 +32768 8312 +32768 7900 +32768 7364 +32768 7253 +32768 7954 +32768 8760 +32768 7277 +32768 7793 +32768 8194 +32768 7996 +32768 7366 +32768 7721 +32768 8266 +32768 8463 +32768 7759 +32768 7346 +32768 8192 +32768 6926 +32768 7222 +32768 7178 +32768 6641 +32768 8254 +32768 7905 +32768 6686 +32768 7009 +32768 6619 +32768 6662 +32768 7605 +32768 7516 +32768 6686 +32768 8178 +32768 8391 +32768 8074 +32768 7195 +32768 8226 +32768 8063 +32768 7155 +32768 7559 diff --git a/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..cb310897ae25da9eec54b1ef81345a4997de6f34 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 367.65 +Mediana = 365.5 +Variancia = 449.47 +Desvio Padrao = 21.2 +Coef. Variacao = 0.06 +Min = 313 +Max = 481 +Esq, Dir. = 364.4666 , 370.8334 diff --git a/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9d6ab1edb7ac4667ff31cb1ed5e7d9cd62eb7ffa --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/4096-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +4096 373 +4096 356 +4096 360 +4096 364 +4096 348 +4096 399 +4096 380 +4096 367 +4096 354 +4096 393 +4096 350 +4096 401 +4096 387 +4096 313 +4096 365 +4096 413 +4096 399 +4096 481 +4096 369 +4096 349 +4096 340 +4096 356 +4096 388 +4096 392 +4096 346 +4096 371 +4096 366 +4096 373 +4096 340 +4096 364 +4096 342 +4096 351 +4096 363 +4096 359 +4096 362 +4096 348 +4096 362 +4096 337 +4096 376 +4096 391 +4096 392 +4096 368 +4096 343 +4096 370 +4096 354 +4096 370 +4096 386 +4096 377 +4096 364 +4096 352 +4096 355 +4096 374 +4096 363 +4096 372 +4096 372 +4096 360 +4096 355 +4096 391 +4096 358 +4096 353 +4096 364 +4096 365 +4096 384 +4096 387 +4096 363 +4096 359 +4096 371 +4096 355 +4096 349 +4096 388 +4096 375 +4096 391 +4096 331 +4096 369 +4096 373 +4096 368 +4096 373 +4096 362 +4096 361 +4096 378 +4096 362 +4096 378 +4096 365 +4096 408 +4096 349 +4096 346 +4096 384 +4096 388 +4096 356 +4096 363 +4096 396 +4096 377 +4096 358 +4096 349 +4096 371 +4096 387 +4096 368 +4096 399 +4096 381 +4096 355 +4096 347 +4096 350 +4096 343 +4096 393 +4096 388 +4096 333 +4096 344 +4096 395 +4096 331 +4096 354 +4096 372 +4096 336 +4096 390 +4096 376 +4096 367 +4096 369 +4096 387 +4096 372 +4096 331 +4096 357 diff --git a/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b8fd2096e3555c9ffc2005034606668d8f10149e --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 27.39 +Mediana = 26 +Variancia = 10.78 +Desvio Padrao = 3.28 +Coef. Variacao = 0.12 +Min = 23 +Max = 35 +Esq, Dir. = 26.8987 , 27.8846 diff --git a/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e98f9362c06efdd1a3150da2a8e414070a75057a --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/512-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +512 23 +512 25 +512 26 +512 31 +512 25 +512 24 +512 26 +512 25 +512 32 +512 25 +512 25 +512 26 +512 33 +512 31 +512 31 +512 27 +512 31 +512 33 +512 25 +512 33 +512 25 +512 33 +512 24 +512 32 +512 31 +512 24 +512 24 +512 28 +512 26 +512 25 +512 27 +512 26 +512 25 +512 26 +512 30 +512 26 +512 30 +512 28 +512 26 +512 32 +512 28 +512 24 +512 25 +512 31 +512 25 +512 30 +512 30 +512 35 +512 30 +512 27 +512 32 +512 24 +512 26 +512 33 +512 26 +512 32 +512 25 +512 26 +512 25 +512 31 +512 32 +512 24 +512 27 +512 26 +512 32 +512 26 +512 25 +512 24 +512 27 +512 32 +512 35 +512 25 +512 25 +512 32 +512 23 +512 25 +512 26 +512 25 +512 25 +512 24 +512 25 +512 34 +512 30 +512 25 +512 25 +512 32 +512 24 +512 25 +512 25 +512 30 +512 25 +512 25 +512 24 +512 33 +512 32 +512 24 +512 26 +512 31 +512 24 +512 26 +512 31 +512 26 +512 25 +512 32 +512 24 +512 25 +512 25 +512 27 +512 25 +512 24 +512 28 +512 24 +512 25 +512 26 +512 32 +512 26 +512 25 +512 24 +512 25 +512 33 diff --git a/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..7425cb5d73f1513e7c331612fafdba88e69837ee --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 3.67 +Mediana = 4 +Variancia = 0.22 +Desvio Padrao = 0.47 +Coef. Variacao = 0.13 +Min = 3 +Max = 4 +Esq, Dir. = 3.5956 , 3.7377 diff --git a/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..71de064ae61c0a83c8d23e44f5d6dbf621d53ff2 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/64-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +64 3 +64 4 +64 3 +64 4 +64 4 +64 3 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 4 +64 4 +64 3 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 4 +64 3 +64 3 +64 3 +64 4 +64 3 +64 3 +64 4 +64 4 +64 3 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 3 +64 3 +64 4 +64 3 +64 3 +64 4 +64 4 +64 3 +64 4 +64 3 +64 4 +64 4 +64 4 +64 3 +64 3 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 4 +64 4 +64 4 +64 3 +64 3 +64 3 +64 4 +64 4 +64 3 +64 4 +64 3 +64 4 +64 4 +64 3 +64 3 +64 3 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 3 +64 4 +64 4 +64 4 +64 3 +64 3 +64 4 +64 3 +64 4 +64 4 +64 4 +64 4 +64 4 +64 4 +64 3 +64 4 +64 3 +64 3 +64 3 +64 4 +64 4 +64 4 diff --git a/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..2deb65858bfc4fee53e5c14723c6ac6d18cb6bcb --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 26939.13 +Mediana = 27145.5 +Variancia = 3845511.73 +Desvio Padrao = 1961 +Coef. Variacao = 0.07 +Min = 22472 +Max = 30707 +Esq, Dir. = 26644.6819 , 27233.5848 diff --git a/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..33239e386141e19cdb99f779421f3ddec82b2b70 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/65536-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +65536 30538 +65536 25809 +65536 26113 +65536 27931 +65536 25342 +65536 29540 +65536 30671 +65536 25391 +65536 26128 +65536 27618 +65536 26085 +65536 28733 +65536 27179 +65536 22472 +65536 27230 +65536 30358 +65536 28082 +65536 25499 +65536 26499 +65536 30250 +65536 23958 +65536 25677 +65536 29085 +65536 25015 +65536 22898 +65536 28605 +65536 27119 +65536 26956 +65536 22954 +65536 27447 +65536 25741 +65536 24944 +65536 27834 +65536 22667 +65536 29274 +65536 24319 +65536 26981 +65536 26365 +65536 27400 +65536 29877 +65536 28896 +65536 27074 +65536 24160 +65536 28083 +65536 26808 +65536 26393 +65536 29301 +65536 26552 +65536 26416 +65536 27443 +65536 27172 +65536 27487 +65536 27782 +65536 27866 +65536 25558 +65536 26874 +65536 25870 +65536 27386 +65536 27450 +65536 26025 +65536 26255 +65536 28639 +65536 27199 +65536 29349 +65536 26573 +65536 26019 +65536 28986 +65536 28086 +65536 25575 +65536 28761 +65536 27665 +65536 29371 +65536 24348 +65536 28110 +65536 27372 +65536 26145 +65536 25719 +65536 27001 +65536 27256 +65536 29204 +65536 27554 +65536 26107 +65536 29406 +65536 27901 +65536 25839 +65536 25316 +65536 28219 +65536 30707 +65536 25402 +65536 27440 +65536 29014 +65536 27983 +65536 25840 +65536 27442 +65536 29262 +65536 29708 +65536 27541 +65536 25491 +65536 30643 +65536 24402 +65536 23552 +65536 24964 +65536 22914 +65536 28964 +65536 28271 +65536 23342 +65536 24497 +65536 22923 +65536 23519 +65536 26178 +65536 25959 +65536 23356 +65536 28457 +65536 29332 +65536 28610 +65536 25170 +65536 29432 +65536 28522 +65536 25593 +65536 27111 diff --git a/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.R b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..a6b0a4158688304f2080357df501133d8300734f --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 860.38 +Mediana = 864 +Variancia = 2462.32 +Desvio Padrao = 49.62 +Coef. Variacao = 0.06 +Min = 734 +Max = 964 +Esq, Dir. = 852.9241 , 867.8259 diff --git a/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.res b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..93aa9979ba1cbe7401dc00fe430ea8c1d59d160c --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/8192-linear248-LayoutSQL.res @@ -0,0 +1,120 @@ +8192 886 +8192 846 +8192 851 +8192 855 +8192 838 +8192 950 +8192 908 +8192 793 +8192 833 +8192 872 +8192 826 +8192 899 +8192 891 +8192 748 +8192 843 +8192 925 +8192 892 +8192 964 +8192 802 +8192 825 +8192 782 +8192 835 +8192 930 +8192 934 +8192 745 +8192 906 +8192 854 +8192 882 +8192 780 +8192 879 +8192 806 +8192 815 +8192 876 +8192 747 +8192 878 +8192 812 +8192 849 +8192 780 +8192 880 +8192 936 +8192 923 +8192 872 +8192 784 +8192 886 +8192 831 +8192 861 +8192 911 +8192 921 +8192 869 +8192 810 +8192 848 +8192 883 +8192 867 +8192 891 +8192 829 +8192 845 +8192 837 +8192 862 +8192 880 +8192 857 +8192 864 +8192 889 +8192 929 +8192 902 +8192 880 +8192 849 +8192 893 +8192 860 +8192 734 +8192 914 +8192 876 +8192 915 +8192 783 +8192 891 +8192 881 +8192 817 +8192 880 +8192 871 +8192 862 +8192 911 +8192 864 +8192 913 +8192 861 +8192 863 +8192 843 +8192 822 +8192 900 +8192 956 +8192 845 +8192 882 +8192 914 +8192 881 +8192 848 +8192 864 +8192 891 +8192 938 +8192 856 +8192 856 +8192 876 +8192 818 +8192 795 +8192 814 +8192 802 +8192 920 +8192 876 +8192 789 +8192 799 +8192 952 +8192 766 +8192 849 +8192 860 +8192 781 +8192 899 +8192 909 +8192 893 +8192 821 +8192 911 +8192 890 +8192 744 +8192 863 diff --git a/experiments/develop_processed_experiments4-16-linear248/mean_by_linear248.res b/experiments/develop_processed_experiments4-16-linear248/mean_by_linear248.res new file mode 100644 index 0000000000000000000000000000000000000000..0f1cfbc6785bbd644d4daa01dd88b02967616425 --- /dev/null +++ b/experiments/develop_processed_experiments4-16-linear248/mean_by_linear248.res @@ -0,0 +1,13 @@ +16 3.19 +32 2.56 +64 3.67 +128 6.69 +256 13.18 +512 27.39 +1024 125.94 +2048 164.64 +4096 367.65 +8192 860.38 +16384 2489.75 +32768 7659.06 +65536 26939.13 diff --git a/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..f1635693ebb97f032c0d5ed3b0579853ddd86d7a --- /dev/null +++ b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 606.98 +Mediana = 339.5 +Variancia = 594581.55 +Desvio Padrao = 771.09 +Coef. Variacao = 1.27 +Min = 309 +Max = 4332 +Esq, Dir. = 491.201 , 722.7657 diff --git a/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..65475f89187b9e3b84f1a4d75818ce53d4551245 --- /dev/null +++ b/experiments/develop_processed_var_graph/1024-linear2-LayoutSQL.res @@ -0,0 +1,120 @@ +1024 344 +1024 370 +1024 346 +1024 327 +1024 328 +1024 353 +1024 353 +1024 333 +1024 333 +1024 344 +1024 343 +1024 322 +1024 340 +1024 311 +1024 335 +1024 328 +1024 352 +1024 336 +1024 339 +1024 338 +1024 2646 +1024 708 +1024 3141 +1024 405 +1024 815 +1024 821 +1024 1529 +1024 1201 +1024 835 +1024 4332 +1024 2289 +1024 3288 +1024 3047 +1024 353 +1024 2245 +1024 2186 +1024 2676 +1024 3596 +1024 342 +1024 2402 +1024 353 +1024 328 +1024 311 +1024 358 +1024 355 +1024 311 +1024 361 +1024 318 +1024 331 +1024 368 +1024 312 +1024 353 +1024 366 +1024 325 +1024 334 +1024 418 +1024 336 +1024 369 +1024 311 +1024 337 +1024 321 +1024 378 +1024 389 +1024 325 +1024 356 +1024 359 +1024 335 +1024 337 +1024 365 +1024 324 +1024 328 +1024 342 +1024 315 +1024 312 +1024 326 +1024 324 +1024 323 +1024 343 +1024 389 +1024 337 +1024 317 +1024 339 +1024 320 +1024 311 +1024 347 +1024 374 +1024 315 +1024 312 +1024 321 +1024 347 +1024 327 +1024 331 +1024 346 +1024 323 +1024 319 +1024 329 +1024 331 +1024 329 +1024 424 +1024 323 +1024 324 +1024 353 +1024 357 +1024 339 +1024 333 +1024 366 +1024 336 +1024 339 +1024 395 +1024 321 +1024 328 +1024 327 +1024 332 +1024 362 +1024 342 +1024 309 +1024 342 +1024 334 +1024 340 +1024 359 diff --git a/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..2190bf88f6f4ed9493e7e87781b2b46cf3b6492f --- /dev/null +++ b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 264.82 +Mediana = 243 +Variancia = 5738.72 +Desvio Padrao = 75.75 +Coef. Variacao = 0.29 +Min = 191 +Max = 560 +Esq, Dir. = 253.4419 , 276.1915 diff --git a/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b01328289b487b15157a967a10b650165b4d59bf --- /dev/null +++ b/experiments/develop_processed_var_graph/1024-linear4-LayoutSQL.res @@ -0,0 +1,120 @@ +1024 249 +1024 232 +1024 252 +1024 230 +1024 265 +1024 274 +1024 240 +1024 284 +1024 268 +1024 237 +1024 267 +1024 215 +1024 273 +1024 273 +1024 257 +1024 216 +1024 219 +1024 246 +1024 251 +1024 247 +1024 425 +1024 471 +1024 308 +1024 503 +1024 418 +1024 200 +1024 206 +1024 486 +1024 495 +1024 238 +1024 207 +1024 343 +1024 560 +1024 226 +1024 310 +1024 438 +1024 549 +1024 462 +1024 461 +1024 439 +1024 235 +1024 228 +1024 251 +1024 252 +1024 232 +1024 238 +1024 286 +1024 242 +1024 227 +1024 243 +1024 251 +1024 200 +1024 241 +1024 243 +1024 205 +1024 236 +1024 200 +1024 223 +1024 241 +1024 219 +1024 217 +1024 211 +1024 265 +1024 220 +1024 268 +1024 213 +1024 218 +1024 245 +1024 254 +1024 260 +1024 213 +1024 217 +1024 251 +1024 258 +1024 242 +1024 227 +1024 245 +1024 220 +1024 240 +1024 253 +1024 240 +1024 276 +1024 224 +1024 243 +1024 222 +1024 228 +1024 250 +1024 242 +1024 213 +1024 218 +1024 214 +1024 245 +1024 241 +1024 206 +1024 253 +1024 226 +1024 243 +1024 250 +1024 257 +1024 210 +1024 239 +1024 267 +1024 213 +1024 282 +1024 249 +1024 253 +1024 232 +1024 289 +1024 208 +1024 265 +1024 248 +1024 263 +1024 236 +1024 250 +1024 252 +1024 242 +1024 253 +1024 191 +1024 252 +1024 223 diff --git a/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..f024c9d2489e7ad9938340ceb2f8a911f97e3f91 --- /dev/null +++ b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 70.1 +Mediana = 63 +Variancia = 161.04 +Desvio Padrao = 12.69 +Coef. Variacao = 0.18 +Min = 58 +Max = 93 +Esq, Dir. = 65.4325 , 74.7675 diff --git a/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..f8105406df2590c71b322e8078dd1087e567e286 --- /dev/null +++ b/experiments/develop_processed_var_graph/1024-linear8-LayoutSQL.res @@ -0,0 +1,20 @@ +1024 58 +1024 73 +1024 60 +1024 64 +1024 62 +1024 93 +1024 62 +1024 87 +1024 67 +1024 60 +1024 62 +1024 66 +1024 92 +1024 61 +1024 61 +1024 89 +1024 62 +1024 61 +1024 92 +1024 70 diff --git a/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..900df98639d92fc45a5d374a4c087295719a1469 --- /dev/null +++ b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 29.82 +Mediana = 23 +Variancia = 384.23 +Desvio Padrao = 19.6 +Coef. Variacao = 0.66 +Min = 20 +Max = 156 +Esq, Dir. = 26.8817 , 32.7683 diff --git a/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..cdc22812feb8f8ca816f9ce851788fc4e4b475bf --- /dev/null +++ b/experiments/develop_processed_var_graph/128-linear2-LayoutSQL.res @@ -0,0 +1,120 @@ +128 22 +128 26 +128 22 +128 23 +128 24 +128 22 +128 24 +128 23 +128 24 +128 31 +128 25 +128 30 +128 23 +128 23 +128 23 +128 25 +128 25 +128 24 +128 25 +128 21 +128 97 +128 52 +128 112 +128 28 +128 58 +128 48 +128 43 +128 34 +128 27 +128 84 +128 84 +128 156 +128 80 +128 24 +128 41 +128 42 +128 37 +128 79 +128 58 +128 43 +128 32 +128 22 +128 23 +128 21 +128 22 +128 21 +128 25 +128 21 +128 21 +128 23 +128 22 +128 23 +128 23 +128 30 +128 22 +128 23 +128 22 +128 23 +128 20 +128 24 +128 22 +128 24 +128 22 +128 20 +128 24 +128 26 +128 23 +128 23 +128 22 +128 22 +128 23 +128 23 +128 23 +128 23 +128 24 +128 22 +128 22 +128 32 +128 24 +128 22 +128 22 +128 23 +128 23 +128 21 +128 23 +128 25 +128 21 +128 22 +128 22 +128 29 +128 24 +128 23 +128 23 +128 22 +128 23 +128 23 +128 24 +128 23 +128 25 +128 26 +128 22 +128 22 +128 24 +128 23 +128 24 +128 21 +128 21 +128 23 +128 31 +128 23 +128 22 +128 22 +128 23 +128 24 +128 23 +128 21 +128 21 +128 24 +128 29 +128 28 diff --git a/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..433067bb1c98239355e9295f08d8a44929278498 --- /dev/null +++ b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 23 +Mediana = 19 +Variancia = 96 +Desvio Padrao = 9.8 +Coef. Variacao = 0.43 +Min = 15 +Max = 70 +Esq, Dir. = 21.5288 , 24.4712 diff --git a/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..c3c0d20080318395c404a959f3eb23311a0b429a --- /dev/null +++ b/experiments/develop_processed_var_graph/128-linear4-LayoutSQL.res @@ -0,0 +1,120 @@ +128 18 +128 19 +128 23 +128 27 +128 17 +128 18 +128 23 +128 19 +128 23 +128 17 +128 25 +128 17 +128 29 +128 18 +128 16 +128 17 +128 18 +128 23 +128 18 +128 19 +128 41 +128 37 +128 36 +128 38 +128 34 +128 29 +128 33 +128 43 +128 35 +128 37 +128 53 +128 28 +128 70 +128 45 +128 19 +128 40 +128 22 +128 56 +128 41 +128 65 +128 19 +128 24 +128 18 +128 18 +128 18 +128 28 +128 19 +128 23 +128 18 +128 15 +128 17 +128 17 +128 22 +128 16 +128 25 +128 21 +128 17 +128 17 +128 24 +128 17 +128 18 +128 17 +128 18 +128 16 +128 15 +128 23 +128 18 +128 21 +128 18 +128 18 +128 17 +128 18 +128 17 +128 17 +128 23 +128 17 +128 17 +128 18 +128 17 +128 18 +128 17 +128 17 +128 19 +128 27 +128 23 +128 17 +128 16 +128 17 +128 17 +128 27 +128 23 +128 21 +128 21 +128 18 +128 16 +128 19 +128 27 +128 22 +128 17 +128 16 +128 31 +128 18 +128 17 +128 18 +128 18 +128 17 +128 25 +128 18 +128 21 +128 23 +128 19 +128 18 +128 17 +128 20 +128 24 +128 27 +128 23 +128 15 +128 17 +128 17 diff --git a/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..354f42f5f4b4f432db9c38201914b529b9c5e1ac --- /dev/null +++ b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 18.75 +Mediana = 13.5 +Variancia = 160.09 +Desvio Padrao = 12.65 +Coef. Variacao = 0.67 +Min = 11 +Max = 51 +Esq, Dir. = 14.0963 , 23.4037 diff --git a/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b60814845933607ce27287559e159189264b44d3 --- /dev/null +++ b/experiments/develop_processed_var_graph/128-linear8-LayoutSQL.res @@ -0,0 +1,20 @@ +128 12 +128 11 +128 15 +128 50 +128 13 +128 13 +128 13 +128 13 +128 51 +128 12 +128 13 +128 14 +128 11 +128 15 +128 13 +128 14 +128 15 +128 41 +128 22 +128 14 diff --git a/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..7663e5738c2c188d11d409114caa946ca00476d3 --- /dev/null +++ b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 13.91 +Mediana = 11 +Variancia = 77.78 +Desvio Padrao = 8.82 +Coef. Variacao = 0.63 +Min = 10 +Max = 64 +Esq, Dir. = 12.5841 , 15.2326 diff --git a/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..53741c634a9c237a962567c1f46c85d4164de8bc --- /dev/null +++ b/experiments/develop_processed_var_graph/16-linear2-LayoutSQL.res @@ -0,0 +1,120 @@ +16 12 +16 12 +16 10 +16 10 +16 11 +16 11 +16 11 +16 10 +16 11 +16 10 +16 12 +16 11 +16 11 +16 10 +16 11 +16 12 +16 11 +16 11 +16 11 +16 11 +16 39 +16 24 +16 48 +16 27 +16 25 +16 24 +16 14 +16 12 +16 12 +16 35 +16 33 +16 64 +16 37 +16 11 +16 35 +16 32 +16 12 +16 48 +16 29 +16 14 +16 11 +16 11 +16 10 +16 11 +16 10 +16 10 +16 11 +16 11 +16 10 +16 10 +16 10 +16 11 +16 10 +16 11 +16 11 +16 13 +16 10 +16 11 +16 11 +16 11 +16 11 +16 10 +16 11 +16 11 +16 11 +16 12 +16 11 +16 13 +16 11 +16 10 +16 12 +16 12 +16 10 +16 11 +16 11 +16 11 +16 11 +16 11 +16 11 +16 11 +16 10 +16 12 +16 12 +16 10 +16 11 +16 11 +16 11 +16 11 +16 10 +16 10 +16 11 +16 10 +16 12 +16 11 +16 11 +16 11 +16 11 +16 11 +16 11 +16 13 +16 11 +16 10 +16 13 +16 11 +16 11 +16 11 +16 11 +16 11 +16 12 +16 11 +16 10 +16 11 +16 11 +16 10 +16 11 +16 11 +16 11 +16 11 +16 11 +16 10 diff --git a/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..217607ba7f961dc87734d37da5515183080f85db --- /dev/null +++ b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 10.74 +Mediana = 10 +Variancia = 12.24 +Desvio Padrao = 3.5 +Coef. Variacao = 0.33 +Min = 8 +Max = 24 +Esq, Dir. = 10.2163 , 11.2671 diff --git a/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..416ba2d4c990ff4601f40a9cc159913f5a80ffd4 --- /dev/null +++ b/experiments/develop_processed_var_graph/16-linear4-LayoutSQL.res @@ -0,0 +1,120 @@ +16 10 +16 10 +16 10 +16 15 +16 17 +16 10 +16 10 +16 9 +16 10 +16 9 +16 10 +16 9 +16 8 +16 10 +16 9 +16 9 +16 10 +16 10 +16 9 +16 11 +16 9 +16 18 +16 16 +16 21 +16 17 +16 18 +16 17 +16 17 +16 16 +16 23 +16 18 +16 9 +16 24 +16 9 +16 8 +16 13 +16 10 +16 24 +16 23 +16 18 +16 10 +16 8 +16 9 +16 10 +16 9 +16 10 +16 10 +16 10 +16 9 +16 8 +16 9 +16 9 +16 9 +16 9 +16 10 +16 12 +16 8 +16 9 +16 9 +16 9 +16 9 +16 9 +16 10 +16 9 +16 9 +16 9 +16 10 +16 10 +16 10 +16 10 +16 9 +16 10 +16 9 +16 9 +16 10 +16 9 +16 8 +16 10 +16 9 +16 9 +16 9 +16 10 +16 10 +16 9 +16 10 +16 10 +16 9 +16 10 +16 8 +16 9 +16 9 +16 10 +16 9 +16 9 +16 9 +16 9 +16 10 +16 9 +16 9 +16 9 +16 11 +16 10 +16 9 +16 10 +16 9 +16 10 +16 10 +16 10 +16 15 +16 9 +16 10 +16 10 +16 9 +16 9 +16 9 +16 10 +16 9 +16 8 +16 9 +16 11 diff --git a/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..67f89f6e72e98472c314f1206ac35bc27b341a92 --- /dev/null +++ b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 28.1 +Mediana = 27.5 +Variancia = 38.94 +Desvio Padrao = 6.24 +Coef. Variacao = 0.22 +Min = 20 +Max = 49 +Esq, Dir. = 25.8049 , 30.3951 diff --git a/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..2495e2991b40cb46fb40b3acc406e3fb3b77a1cb --- /dev/null +++ b/experiments/develop_processed_var_graph/16-linear8-LayoutSQL.res @@ -0,0 +1,20 @@ +16 28 +16 26 +16 28 +16 32 +16 32 +16 22 +16 27 +16 21 +16 30 +16 24 +16 26 +16 31 +16 22 +16 31 +16 31 +16 20 +16 31 +16 24 +16 49 +16 27 diff --git a/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.R b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..1b51c77c59f62d07ce1aa1f8167fdf648aac36f0 --- /dev/null +++ b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 92785.34 +Mediana = 80498.5 +Variancia = 1001944827.22 +Desvio Padrao = 31653.51 +Coef. Variacao = 0.34 +Min = 67944 +Max = 217680 +Esq, Dir. = 88032.4432 , 97538.2401 diff --git a/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.res b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..3737bc5e2bcd9554c75bfb9910376b1c8b99ccfa --- /dev/null +++ b/experiments/develop_processed_var_graph/16384-linear2-LayoutSQL.res @@ -0,0 +1,120 @@ +16384 83176 +16384 86881 +16384 81558 +16384 83554 +16384 74577 +16384 78634 +16384 86756 +16384 77625 +16384 77458 +16384 89854 +16384 74001 +16384 85630 +16384 71626 +16384 74380 +16384 83490 +16384 74152 +16384 78894 +16384 80517 +16384 84967 +16384 79748 +16384 146841 +16384 132206 +16384 142472 +16384 217680 +16384 183429 +16384 149168 +16384 149480 +16384 140013 +16384 172668 +16384 163681 +16384 157235 +16384 155542 +16384 165785 +16384 163649 +16384 128780 +16384 175272 +16384 142405 +16384 181750 +16384 182979 +16384 143576 +16384 77890 +16384 75484 +16384 87635 +16384 81725 +16384 84410 +16384 73208 +16384 81260 +16384 77277 +16384 78783 +16384 83777 +16384 72227 +16384 79598 +16384 83539 +16384 75211 +16384 79337 +16384 80381 +16384 82006 +16384 87735 +16384 77646 +16384 79704 +16384 80024 +16384 85416 +16384 92936 +16384 79495 +16384 81905 +16384 78527 +16384 73043 +16384 79755 +16384 85103 +16384 76324 +16384 79786 +16384 78163 +16384 70802 +16384 76744 +16384 73091 +16384 84119 +16384 82630 +16384 81725 +16384 87723 +16384 73628 +16384 82278 +16384 68422 +16384 77158 +16384 84585 +16384 80917 +16384 89623 +16384 70646 +16384 76797 +16384 79216 +16384 76996 +16384 79130 +16384 83239 +16384 80873 +16384 78380 +16384 74701 +16384 70248 +16384 78185 +16384 68840 +16384 77492 +16384 67944 +16384 69347 +16384 84424 +16384 87198 +16384 84464 +16384 79739 +16384 89740 +16384 79588 +16384 80480 +16384 87967 +16384 70867 +16384 76621 +16384 77505 +16384 76809 +16384 84578 +16384 81276 +16384 68395 +16384 73001 +16384 77110 +16384 82696 +16384 74905 diff --git a/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.R b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..d64dd930009ee22ac094f5efb8bd31952b78d0b3 --- /dev/null +++ b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 7819.13 +Mediana = 7110.5 +Variancia = 3065808.69 +Desvio Padrao = 1750.95 +Coef. Variacao = 0.22 +Min = 6603 +Max = 13358 +Esq, Dir. = 7556.2221 , 8082.0446 diff --git a/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.res b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..256aa5b2d24b559003b124e25246eab486995c4c --- /dev/null +++ b/experiments/develop_processed_var_graph/16384-linear4-LayoutSQL.res @@ -0,0 +1,120 @@ +16384 6813 +16384 6900 +16384 7206 +16384 6830 +16384 7031 +16384 6920 +16384 7023 +16384 6983 +16384 7234 +16384 6925 +16384 7348 +16384 6762 +16384 6926 +16384 7703 +16384 7219 +16384 6759 +16384 6603 +16384 6898 +16384 6910 +16384 7039 +16384 10938 +16384 12280 +16384 11534 +16384 11882 +16384 11870 +16384 10100 +16384 12405 +16384 12658 +16384 11271 +16384 11064 +16384 12503 +16384 11958 +16384 13358 +16384 12902 +16384 10100 +16384 10855 +16384 10891 +16384 11512 +16384 11818 +16384 10139 +16384 7643 +16384 6837 +16384 7716 +16384 7127 +16384 7254 +16384 7131 +16384 6966 +16384 7343 +16384 7311 +16384 7231 +16384 6883 +16384 7289 +16384 7109 +16384 7227 +16384 7167 +16384 7215 +16384 6833 +16384 6919 +16384 7019 +16384 7006 +16384 7397 +16384 7076 +16384 7010 +16384 7146 +16384 6830 +16384 7342 +16384 6825 +16384 6946 +16384 6918 +16384 7095 +16384 7124 +16384 7291 +16384 7112 +16384 7069 +16384 6801 +16384 6773 +16384 7186 +16384 7053 +16384 7091 +16384 7115 +16384 6880 +16384 6920 +16384 7115 +16384 6932 +16384 6744 +16384 7178 +16384 7407 +16384 6957 +16384 7184 +16384 6980 +16384 7396 +16384 6980 +16384 6864 +16384 6903 +16384 6805 +16384 7007 +16384 7061 +16384 7077 +16384 7122 +16384 6687 +16384 7137 +16384 6935 +16384 7117 +16384 6822 +16384 7321 +16384 6984 +16384 7062 +16384 6853 +16384 6913 +16384 6868 +16384 7287 +16384 7458 +16384 7142 +16384 7396 +16384 7020 +16384 7475 +16384 6802 +16384 6846 +16384 7228 +16384 6935 diff --git a/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.R b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..957fe8a71d11e5a3bc204eabcf2824880e40a0fc --- /dev/null +++ b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 2399.15 +Mediana = 2239 +Variancia = 475613.4 +Desvio Padrao = 689.65 +Coef. Variacao = 0.29 +Min = 2129 +Max = 5301 +Esq, Dir. = 2145.4974 , 2652.8026 diff --git a/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.res b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..5e44beaf43bc774daa752690c33223db7508866c --- /dev/null +++ b/experiments/develop_processed_var_graph/16384-linear8-LayoutSQL.res @@ -0,0 +1,20 @@ +16384 2183 +16384 2193 +16384 2246 +16384 2517 +16384 2301 +16384 2260 +16384 2158 +16384 2184 +16384 2434 +16384 2136 +16384 2186 +16384 2256 +16384 2287 +16384 2216 +16384 2129 +16384 2234 +16384 2189 +16384 2329 +16384 5301 +16384 2244 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..a33d842b7fcd626c89d6f099ca4a5d0aa3a12ea3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 1942.85 +Mediana = 2215.5 +Variancia = 1467251.82 +Desvio Padrao = 1211.3 +Coef. Variacao = 0.62 +Min = 342 +Max = 4332 +Esq, Dir. = 1497.3327 , 2388.3673 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..87b33add5923ed0bfbb68c6aea2171b2f7916ea2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutSQL.res @@ -0,0 +1,20 @@ +1024 2646 +1024 708 +1024 3141 +1024 405 +1024 815 +1024 821 +1024 1529 +1024 1201 +1024 835 +1024 4332 +1024 2289 +1024 3288 +1024 3047 +1024 353 +1024 2245 +1024 2186 +1024 2676 +1024 3596 +1024 342 +1024 2402 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..6588794e0d15067256ffff3b76cbc817a1474ab9 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.R @@ -0,0 +1,8 @@ +Media = 1331.15 +Mediana = 867 +Variancia = 1499210.56 +Desvio Padrao = 1224.42 +Coef. Variacao = 0.92 +Min = 695 +Max = 4856 +Esq, Dir. = 880.8068 , 1781.4932 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..b8c807b22843f3630cadc9d2f4807b2503d97ce5 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/1024-LayoutView.res @@ -0,0 +1,20 @@ +1024 876 +1024 4856 +1024 839 +1024 799 +1024 981 +1024 695 +1024 804 +1024 877 +1024 3490 +1024 724 +1024 858 +1024 939 +1024 699 +1024 941 +1024 743 +1024 898 +1024 4007 +1024 822 +1024 962 +1024 813 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..869f5a48c0cabe11825b3d1daf12edd66b1bca7b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 61.35 +Mediana = 50 +Variancia = 1118.87 +Desvio Padrao = 33.45 +Coef. Variacao = 0.55 +Min = 24 +Max = 156 +Esq, Dir. = 49.0472 , 73.6528 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..0e16abe230e8d31feada300981d1f22b33ad48ea --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutSQL.res @@ -0,0 +1,20 @@ +128 97 +128 52 +128 112 +128 28 +128 58 +128 48 +128 43 +128 34 +128 27 +128 84 +128 84 +128 156 +128 80 +128 24 +128 41 +128 42 +128 37 +128 79 +128 58 +128 43 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..0c14f306441981f0e92b026536e2e3f0cb868c93 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.R @@ -0,0 +1,8 @@ +Media = 81.8 +Mediana = 69.5 +Variancia = 1797.54 +Desvio Padrao = 42.4 +Coef. Variacao = 0.52 +Min = 27 +Max = 205 +Esq, Dir. = 66.2062 , 97.3938 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..9f3bcd9d3a59971d581b6c93ee77a81c2b145f87 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/128-LayoutView.res @@ -0,0 +1,20 @@ +128 71 +128 91 +128 68 +128 105 +128 89 +128 59 +128 40 +128 73 +128 97 +128 68 +128 80 +128 64 +128 54 +128 205 +128 49 +128 53 +128 27 +128 169 +128 115 +128 59 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..89ffeaa74f8cb92e0af7f233f0df24971e62793c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 28.75 +Mediana = 28 +Variancia = 206.2 +Desvio Padrao = 14.36 +Coef. Variacao = 0.5 +Min = 11 +Max = 64 +Esq, Dir. = 23.4685 , 34.0315 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..bbfa8aae7729bc89d638d9d4d09a5c8f6a6bd603 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutSQL.res @@ -0,0 +1,20 @@ +16 39 +16 24 +16 48 +16 27 +16 25 +16 24 +16 14 +16 12 +16 12 +16 35 +16 33 +16 64 +16 37 +16 11 +16 35 +16 32 +16 12 +16 48 +16 29 +16 14 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..0c48c2a2fa051ca984b77f0e5ca8077661b74071 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.R @@ -0,0 +1,8 @@ +Media = 67.7 +Mediana = 73 +Variancia = 442.43 +Desvio Padrao = 21.03 +Coef. Variacao = 0.31 +Min = 18 +Max = 110 +Esq, Dir. = 59.9637 , 75.4363 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..65a323bc6c7380d4a4a6ba3276cc4c02a5ea7d11 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16-LayoutView.res @@ -0,0 +1,20 @@ +16 57 +16 110 +16 74 +16 55 +16 84 +16 55 +16 34 +16 72 +16 75 +16 59 +16 81 +16 83 +16 64 +16 89 +16 76 +16 42 +16 18 +16 88 +16 76 +16 62 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..9871fbd65733227f954045cdcea91f9477653005 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 159730.55 +Mediana = 156388.5 +Variancia = 462710905 +Desvio Padrao = 21510.72 +Coef. Variacao = 0.13 +Min = 128780 +Max = 217680 +Esq, Dir. = 151818.8989 , 167642.2011 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..4702a8559aea51a3c31f1efa2b4240ae7ff98b3f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutSQL.res @@ -0,0 +1,20 @@ +16384 146841 +16384 132206 +16384 142472 +16384 217680 +16384 183429 +16384 149168 +16384 149480 +16384 140013 +16384 172668 +16384 163681 +16384 157235 +16384 155542 +16384 165785 +16384 163649 +16384 128780 +16384 175272 +16384 142405 +16384 181750 +16384 182979 +16384 143576 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..371e20e71a79f20ac20c6957a9a94d9165b28500 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.R @@ -0,0 +1,8 @@ +Media = 206292.4 +Mediana = 206361 +Variancia = 552168955.73 +Desvio Padrao = 23498.28 +Coef. Variacao = 0.11 +Min = 172837 +Max = 249204 +Esq, Dir. = 197649.7236 , 214935.0764 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..96c33493a2a4a26bcb7736095d6c16ea23d366d7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/16384-LayoutView.res @@ -0,0 +1,20 @@ +16384 215786 +16384 205633 +16384 244365 +16384 174656 +16384 198099 +16384 173229 +16384 209030 +16384 233759 +16384 172837 +16384 225548 +16384 228775 +16384 176410 +16384 211552 +16384 207089 +16384 203064 +16384 249204 +16384 198695 +16384 223244 +16384 177355 +16384 197518 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..785c8d26890a81bfd2e5dd7e9963916b9532d16a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 2240.7 +Mediana = 2148.5 +Variancia = 655051.48 +Desvio Padrao = 809.35 +Coef. Variacao = 0.36 +Min = 1134 +Max = 3590 +Esq, Dir. = 1943.0198 , 2538.3802 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..aff7538e7fe63d1ed3c66a5f9dab66388c67c376 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutSQL.res @@ -0,0 +1,20 @@ +2048 2133 +2048 2581 +2048 2478 +2048 1445 +2048 3409 +2048 3172 +2048 1441 +2048 1134 +2048 3590 +2048 3163 +2048 1412 +2048 3066 +2048 2350 +2048 1791 +2048 2050 +2048 3249 +2048 2164 +2048 1620 +2048 1302 +2048 1264 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..12e9849dea21893c43102d6bf7b7f846ef518721 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.R @@ -0,0 +1,8 @@ +Media = 3797.75 +Mediana = 3367.5 +Variancia = 1600916.51 +Desvio Padrao = 1265.27 +Coef. Variacao = 0.33 +Min = 2703 +Max = 8444 +Esq, Dir. = 3332.3819 , 4263.1181 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..f23650fcc1ec912fb0ae097347cb1381390fe53f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/2048-LayoutView.res @@ -0,0 +1,20 @@ +2048 3169 +2048 5327 +2048 3420 +2048 3528 +2048 3924 +2048 2703 +2048 3055 +2048 3126 +2048 4718 +2048 2866 +2048 3265 +2048 3802 +2048 3284 +2048 4173 +2048 3077 +2048 4061 +2048 8444 +2048 3217 +2048 3481 +2048 3315 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..5313d734bf208300c988aaa50af4b49db35049c7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 110.75 +Mediana = 83 +Variancia = 3502.41 +Desvio Padrao = 59.18 +Coef. Variacao = 0.53 +Min = 35 +Max = 237 +Esq, Dir. = 88.9831 , 132.5169 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b725a66de589b6d1b69f38c54aaa8a8c3666a653 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutSQL.res @@ -0,0 +1,20 @@ +256 168 +256 74 +256 163 +256 43 +256 77 +256 74 +256 85 +256 68 +256 36 +256 186 +256 184 +256 237 +256 160 +256 35 +256 81 +256 80 +256 118 +256 183 +256 75 +256 88 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..a6de0fbb55f62edfd8e7eb8678f5b314f29d722d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.R @@ -0,0 +1,8 @@ +Media = 122.8 +Mediana = 104 +Variancia = 3706.59 +Desvio Padrao = 60.88 +Coef. Variacao = 0.5 +Min = 59 +Max = 288 +Esq, Dir. = 100.4077 , 145.1923 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..21671b2fc28a176d8fb755555f6ffeb230882502 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/256-LayoutView.res @@ -0,0 +1,20 @@ +256 128 +256 288 +256 173 +256 59 +256 97 +256 69 +256 142 +256 71 +256 128 +256 77 +256 206 +256 220 +256 70 +256 84 +256 154 +256 111 +256 81 +256 79 +256 78 +256 141 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..0c83f51864468510ac2cf90e30c5f3910fa88b13 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 15.9 +Mediana = 11.5 +Variancia = 96.73 +Desvio Padrao = 9.83 +Coef. Variacao = 0.62 +Min = 6 +Max = 37 +Esq, Dir. = 12.2827 , 19.5173 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b8b59278011f210e16a3dd84f66a6d45278dbba6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutSQL.res @@ -0,0 +1,20 @@ +32 34 +32 12 +32 37 +32 7 +32 11 +32 14 +32 9 +32 7 +32 6 +32 22 +32 22 +32 33 +32 20 +32 6 +32 9 +32 18 +32 8 +32 23 +32 11 +32 9 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..5eb3cdb4bbeb143a672e1fa575aa73bf6b0a8cfd --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.R @@ -0,0 +1,8 @@ +Media = 17.85 +Mediana = 18.5 +Variancia = 37.19 +Desvio Padrao = 6.1 +Coef. Variacao = 0.34 +Min = 7 +Max = 32 +Esq, Dir. = 15.6071 , 20.0929 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..63fb24c205ab97417c88e9de8209076b3542f09a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32-LayoutView.res @@ -0,0 +1,20 @@ +32 15 +32 32 +32 22 +32 12 +32 21 +32 12 +32 9 +32 21 +32 21 +32 16 +32 18 +32 16 +32 21 +32 27 +32 21 +32 21 +32 7 +32 19 +32 16 +32 10 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..340f18076da2eeefe499bd5bca86fac2e88b8991 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 623854.8 +Mediana = 613836.5 +Variancia = 1824574611.64 +Desvio Padrao = 42715.04 +Coef. Variacao = 0.07 +Min = 545852 +Max = 723872 +Esq, Dir. = 608144.1891 , 639565.4109 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..2e33c9b44e5bd155184186fac07563a6839afa4d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutSQL.res @@ -0,0 +1,20 @@ +32768 635689 +32768 601664 +32768 593219 +32768 643746 +32768 723872 +32768 587302 +32768 601944 +32768 596924 +32768 608508 +32768 545852 +32768 687097 +32768 648829 +32768 577259 +32768 663640 +32768 631900 +32768 665900 +32768 585672 +32768 597186 +32768 661728 +32768 619165 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..1cf1f223f878b7fca2cb8cf81b0145d4f3f6ec20 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.R @@ -0,0 +1,8 @@ +Media = 844521.85 +Mediana = 837634.5 +Variancia = 3718220446.87 +Desvio Padrao = 60977.21 +Coef. Variacao = 0.07 +Min = 727642 +Max = 982006 +Esq, Dir. = 822094.4037 , 866949.2963 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..013d7168479ed3033b2ff48c284a9d9eb29c321a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/32768-LayoutView.res @@ -0,0 +1,20 @@ +32768 836277 +32768 813715 +32768 982006 +32768 816997 +32768 828673 +32768 813571 +32768 799716 +32768 874650 +32768 727642 +32768 912353 +32768 923952 +32768 910362 +32768 838992 +32768 871646 +32768 830691 +32768 866971 +32768 851589 +32768 774716 +32768 870733 +32768 745185 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..5076cda9fc2441a5a13110fb90fd0fa06b7388da --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 9207.45 +Mediana = 9338 +Variancia = 9050421.63 +Desvio Padrao = 3008.39 +Coef. Variacao = 0.33 +Min = 4903 +Max = 14304 +Esq, Dir. = 8100.9621 , 10313.9379 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8ea0981e41e63fe86e5ad30de9e8becfc993ec83 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutSQL.res @@ -0,0 +1,20 @@ +4096 9877 +4096 10333 +4096 10024 +4096 6452 +4096 14304 +4096 12796 +4096 4962 +4096 8799 +4096 13062 +4096 12152 +4096 7766 +4096 8782 +4096 10435 +4096 5135 +4096 4903 +4096 12923 +4096 8308 +4096 11403 +4096 6489 +4096 5244 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..6fd03978f2deeb943a22a510e475b373a2c975ad --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.R @@ -0,0 +1,8 @@ +Media = 11905.55 +Mediana = 11648.5 +Variancia = 1475099.73 +Desvio Padrao = 1214.54 +Coef. Variacao = 0.1 +Min = 10155 +Max = 14159 +Esq, Dir. = 11458.8428 , 12352.2572 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..78648370f7abf0736c6c95855dcda7220c9f329b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/4096-LayoutView.res @@ -0,0 +1,20 @@ +4096 11589 +4096 11769 +4096 12005 +4096 11017 +4096 13750 +4096 11151 +4096 10488 +4096 10568 +4096 11865 +4096 10155 +4096 12010 +4096 11330 +4096 10720 +4096 13779 +4096 11528 +4096 14159 +4096 14096 +4096 12835 +4096 11665 +4096 11632 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..05f06effa4078d0b65fc1812661e68c8f62e22b5 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 605.15 +Mediana = 494 +Variancia = 153656.98 +Desvio Padrao = 391.99 +Coef. Variacao = 0.65 +Min = 104 +Max = 1332 +Esq, Dir. = 460.9755 , 749.3245 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..009134d0d511b4b08da9e1779826810b66ed19fe --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutSQL.res @@ -0,0 +1,20 @@ +512 1013 +512 215 +512 1085 +512 120 +512 241 +512 248 +512 532 +512 484 +512 317 +512 1089 +512 1332 +512 1158 +512 937 +512 104 +512 501 +512 458 +512 950 +512 646 +512 186 +512 487 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..d787c35cdbc00529ebf9b760848ee1d8bb60c939 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.R @@ -0,0 +1,8 @@ +Media = 360.4 +Mediana = 315 +Variancia = 17409.31 +Desvio Padrao = 131.94 +Coef. Variacao = 0.37 +Min = 257 +Max = 700 +Esq, Dir. = 311.8708 , 408.9292 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..c52f628a972b9985308a8998f362ea956406e75d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/512-LayoutView.res @@ -0,0 +1,20 @@ +512 275 +512 596 +512 295 +512 280 +512 330 +512 261 +512 339 +512 336 +512 653 +512 282 +512 344 +512 302 +512 326 +512 304 +512 258 +512 432 +512 700 +512 303 +512 335 +512 257 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b0231d9ca8d9e8e23ef1ef68018b9e9100400200 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 22.85 +Mediana = 16 +Variancia = 201.82 +Desvio Padrao = 14.21 +Coef. Variacao = 0.62 +Min = 8 +Max = 62 +Esq, Dir. = 17.6249 , 28.0751 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9cc173d24b7a9d6fbc8cca70f6f502c957bfe8bd --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutSQL.res @@ -0,0 +1,20 @@ +64 43 +64 16 +64 41 +64 9 +64 18 +64 16 +64 14 +64 12 +64 9 +64 27 +64 35 +64 62 +64 27 +64 8 +64 14 +64 29 +64 12 +64 34 +64 16 +64 15 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..5ed20ff09aac9be001b82bafe736c885ffd12bf1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.R @@ -0,0 +1,8 @@ +Media = 29.85 +Mediana = 23 +Variancia = 779.82 +Desvio Padrao = 27.93 +Coef. Variacao = 0.94 +Min = 8 +Max = 142 +Esq, Dir. = 19.5791 , 40.1209 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..e4857eb961e5181649ab4208232143ce51d9ef39 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/64-LayoutView.res @@ -0,0 +1,20 @@ +64 23 +64 37 +64 16 +64 19 +64 142 +64 20 +64 14 +64 26 +64 40 +64 28 +64 21 +64 31 +64 15 +64 36 +64 15 +64 16 +64 8 +64 28 +64 23 +64 39 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..526746c2f55581ca5424bde2f5c01eacca8c7356 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 3583772.3 +Mediana = 3556886.5 +Variancia = 10025243651.8 +Desvio Padrao = 100126.14 +Coef. Variacao = 0.03 +Min = 3469782 +Max = 3783762 +Esq, Dir. = 3546945.8609 , 3620598.7391 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..da8c859120a2ee4edb9378452f869073aa1da553 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutSQL.res @@ -0,0 +1,20 @@ +65536 3487022 +65536 3497059 +65536 3557820 +65536 3753961 +65536 3783762 +65536 3543227 +65536 3470671 +65536 3507657 +65536 3526868 +65536 3511704 +65536 3506762 +65536 3569747 +65536 3611263 +65536 3758999 +65536 3648128 +65536 3555953 +65536 3584701 +65536 3722420 +65536 3469782 +65536 3607940 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..4d20ebaeb634c2bf6c31f47a8bf69457ebd76c5a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.R @@ -0,0 +1,8 @@ +Media = 3048935.55 +Mediana = 3043174.5 +Variancia = 16580066322.26 +Desvio Padrao = 128763.61 +Coef. Variacao = 0.04 +Min = 2816560 +Max = 3249125 +Esq, Dir. = 3001576.2373 , 3096294.8627 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..dec5c09208392cc7f0b7075f0e70947a9fd3435c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/65536-LayoutView.res @@ -0,0 +1,20 @@ +65536 3171156 +65536 3249125 +65536 3145722 +65536 2990087 +65536 2996893 +65536 3151742 +65536 3052244 +65536 3162971 +65536 3027508 +65536 3034105 +65536 3155269 +65536 2919261 +65536 3213297 +65536 2870575 +65536 3141673 +65536 3000920 +65536 3120318 +65536 2816560 +65536 2825164 +65536 2934121 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..463faa20a2c6fb67deaf63f14c3a3b6f82f4ebf9 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 36930.5 +Mediana = 39048 +Variancia = 103130597.84 +Desvio Padrao = 10155.32 +Coef. Variacao = 0.27 +Min = 20984 +Max = 55103 +Esq, Dir. = 33195.3674 , 40665.6326 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9ab4dfb0b9fb3f664eaf3eeabc0a4cf6a880cb0b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutSQL.res @@ -0,0 +1,20 @@ +8192 40256 +8192 42143 +8192 39163 +8192 36760 +8192 48673 +8192 33568 +8192 21836 +8192 35939 +8192 55103 +8192 45790 +8192 38933 +8192 20984 +8192 39484 +8192 23440 +8192 29300 +8192 48544 +8192 40214 +8192 49622 +8192 26033 +8192 22825 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..b9834280896be8b9727c5e7ff80d71d44c7e3f1b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.R @@ -0,0 +1,8 @@ +Media = 47431.9 +Mediana = 46483 +Variancia = 36229964.94 +Desvio Padrao = 6019.13 +Coef. Variacao = 0.13 +Min = 40300 +Max = 58148 +Esq, Dir. = 45218.0601 , 49645.7399 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..cae9c04196c1a48a0bf4dafe488b4ce68c6198ea --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/8192-LayoutView.res @@ -0,0 +1,20 @@ +8192 40705 +8192 51114 +8192 55435 +8192 41310 +8192 54230 +8192 45546 +8192 41883 +8192 46616 +8192 40723 +8192 42004 +8192 46350 +8192 53202 +8192 42684 +8192 55269 +8192 50272 +8192 58148 +8192 47508 +8192 53995 +8192 41344 +8192 40300 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..bde3322f50229607411e172b5331d949f887c88e --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run1.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (81ms) + ✓ LayoutView;n=32 (18ms) + ✓ LayoutView;n=64 (21ms) + ✓ LayoutView;n=128 (80ms) + ✓ LayoutView;n=256 (206ms) + ✓ LayoutView;n=512 (344ms) + ✓ LayoutView;n=1024 (858ms) + ✓ LayoutView;n=2048 (3265ms) + ✓ LayoutView;n=4096 (12010ms) + ✓ LayoutView;n=8192 (46350ms) + ✓ LayoutView;n=16384 (228775ms) + ✓ LayoutView;n=32768 (923952ms) + ✓ LayoutView;n=65536 (3155269ms) + ✓ LayoutSQL;n=16 (33ms) + ✓ LayoutSQL;n=32 (22ms) + ✓ LayoutSQL;n=64 (35ms) + ✓ LayoutSQL;n=128 (84ms) + ✓ LayoutSQL;n=256 (184ms) + ✓ LayoutSQL;n=512 (1332ms) + ✓ LayoutSQL;n=1024 (2289ms) + ✓ LayoutSQL;n=2048 (1412ms) + ✓ LayoutSQL;n=4096 (7766ms) + ✓ LayoutSQL;n=8192 (38933ms) + ✓ LayoutSQL;n=16384 (157235ms) + ✓ LayoutSQL;n=32768 (687097ms) + ✓ LayoutSQL;n=65536 (3506762ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..02b9dff1ac33d2d2e70842c5a770a2bb2e12c7ea --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run10.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (59ms) + ✓ LayoutView;n=32 (16ms) + ✓ LayoutView;n=64 (28ms) + ✓ LayoutView;n=128 (68ms) + ✓ LayoutView;n=256 (77ms) + ✓ LayoutView;n=512 (282ms) + ✓ LayoutView;n=1024 (724ms) + ✓ LayoutView;n=2048 (2866ms) + ✓ LayoutView;n=4096 (10155ms) + ✓ LayoutView;n=8192 (42004ms) + ✓ LayoutView;n=16384 (225548ms) + ✓ LayoutView;n=32768 (912353ms) + ✓ LayoutView;n=65536 (3034105ms) + ✓ LayoutSQL;n=16 (35ms) + ✓ LayoutSQL;n=32 (22ms) + ✓ LayoutSQL;n=64 (27ms) + ✓ LayoutSQL;n=128 (84ms) + ✓ LayoutSQL;n=256 (186ms) + ✓ LayoutSQL;n=512 (1089ms) + ✓ LayoutSQL;n=1024 (4332ms) + ✓ LayoutSQL;n=2048 (3163ms) + ✓ LayoutSQL;n=4096 (12152ms) + ✓ LayoutSQL;n=8192 (45790ms) + ✓ LayoutSQL;n=16384 (163681ms) + ✓ LayoutSQL;n=32768 (545852ms) + ✓ LayoutSQL;n=65536 (3511704ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..2fc5d0707a370f8d8dc22276c64dc0655be06881 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run11.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (62ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (39ms) + ✓ LayoutView;n=128 (59ms) + ✓ LayoutView;n=256 (141ms) + ✓ LayoutView;n=512 (257ms) + ✓ LayoutView;n=1024 (813ms) + ✓ LayoutView;n=2048 (3315ms) + ✓ LayoutView;n=4096 (11632ms) + ✓ LayoutView;n=8192 (40300ms) + ✓ LayoutView;n=16384 (197518ms) + ✓ LayoutView;n=32768 (745185ms) + ✓ LayoutView;n=65536 (2934121ms) + ✓ LayoutSQL;n=16 (14ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (15ms) + ✓ LayoutSQL;n=128 (43ms) + ✓ LayoutSQL;n=256 (88ms) + ✓ LayoutSQL;n=512 (487ms) + ✓ LayoutSQL;n=1024 (2402ms) + ✓ LayoutSQL;n=2048 (1264ms) + ✓ LayoutSQL;n=4096 (5244ms) + ✓ LayoutSQL;n=8192 (22825ms) + ✓ LayoutSQL;n=16384 (143576ms) + ✓ LayoutSQL;n=32768 (619165ms) + ✓ LayoutSQL;n=65536 (3607940ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..f35dd5d92bdb3e0eb09590907f88fa9e85ebddb7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run12.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (72ms) + ✓ LayoutView;n=32 (21ms) + ✓ LayoutView;n=64 (26ms) + ✓ LayoutView;n=128 (73ms) + ✓ LayoutView;n=256 (71ms) + ✓ LayoutView;n=512 (336ms) + ✓ LayoutView;n=1024 (877ms) + ✓ LayoutView;n=2048 (3126ms) + ✓ LayoutView;n=4096 (10568ms) + ✓ LayoutView;n=8192 (46616ms) + ✓ LayoutView;n=16384 (233759ms) + ✓ LayoutView;n=32768 (874650ms) + ✓ LayoutView;n=65536 (3162971ms) + ✓ LayoutSQL;n=16 (12ms) + ✓ LayoutSQL;n=32 (7ms) + ✓ LayoutSQL;n=64 (12ms) + ✓ LayoutSQL;n=128 (34ms) + ✓ LayoutSQL;n=256 (68ms) + ✓ LayoutSQL;n=512 (484ms) + ✓ LayoutSQL;n=1024 (1201ms) + ✓ LayoutSQL;n=2048 (1134ms) + ✓ LayoutSQL;n=4096 (8799ms) + ✓ LayoutSQL;n=8192 (35939ms) + ✓ LayoutSQL;n=16384 (140013ms) + ✓ LayoutSQL;n=32768 (596924ms) + ✓ LayoutSQL;n=65536 (3507657ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..ff0c1ab2a18a94f5ee8b428cdb27e3a42820384c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run13.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (42ms) + ✓ LayoutView;n=32 (21ms) + ✓ LayoutView;n=64 (16ms) + ✓ LayoutView;n=128 (53ms) + ✓ LayoutView;n=256 (111ms) + ✓ LayoutView;n=512 (432ms) + ✓ LayoutView;n=1024 (898ms) + ✓ LayoutView;n=2048 (4061ms) + ✓ LayoutView;n=4096 (14159ms) + ✓ LayoutView;n=8192 (58148ms) + ✓ LayoutView;n=16384 (249204ms) + ✓ LayoutView;n=32768 (866971ms) + ✓ LayoutView;n=65536 (3000920ms) + ✓ LayoutSQL;n=16 (32ms) + ✓ LayoutSQL;n=32 (18ms) + ✓ LayoutSQL;n=64 (29ms) + ✓ LayoutSQL;n=128 (42ms) + ✓ LayoutSQL;n=256 (80ms) + ✓ LayoutSQL;n=512 (458ms) + ✓ LayoutSQL;n=1024 (2186ms) + ✓ LayoutSQL;n=2048 (3249ms) + ✓ LayoutSQL;n=4096 (12923ms) + ✓ LayoutSQL;n=8192 (48544ms) + ✓ LayoutSQL;n=16384 (175272ms) + ✓ LayoutSQL;n=32768 (665900ms) + ✓ LayoutSQL;n=65536 (3555953ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..d500b0938819553e4f2fb2f3c47e3963659c2490 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run14.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (55ms) + ✓ LayoutView;n=32 (12ms) + ✓ LayoutView;n=64 (19ms) + ✓ LayoutView;n=128 (105ms) + ✓ LayoutView;n=256 (59ms) + ✓ LayoutView;n=512 (280ms) + ✓ LayoutView;n=1024 (799ms) + ✓ LayoutView;n=2048 (3528ms) + ✓ LayoutView;n=4096 (11017ms) + ✓ LayoutView;n=8192 (41310ms) + ✓ LayoutView;n=16384 (174656ms) + ✓ LayoutView;n=32768 (816997ms) + ✓ LayoutView;n=65536 (2990087ms) + ✓ LayoutSQL;n=16 (27ms) + ✓ LayoutSQL;n=32 (7ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (28ms) + ✓ LayoutSQL;n=256 (43ms) + ✓ LayoutSQL;n=512 (120ms) + ✓ LayoutSQL;n=1024 (405ms) + ✓ LayoutSQL;n=2048 (1445ms) + ✓ LayoutSQL;n=4096 (6452ms) + ✓ LayoutSQL;n=8192 (36760ms) + ✓ LayoutSQL;n=16384 (217680ms) + ✓ LayoutSQL;n=32768 (643746ms) + ✓ LayoutSQL;n=65536 (3753961ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..22a9bdaecee0fe555afda9b92217f75ee110819a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run15.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (34ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (14ms) + ✓ LayoutView;n=128 (40ms) + ✓ LayoutView;n=256 (142ms) + ✓ LayoutView;n=512 (339ms) + ✓ LayoutView;n=1024 (804ms) + ✓ LayoutView;n=2048 (3055ms) + ✓ LayoutView;n=4096 (10488ms) + ✓ LayoutView;n=8192 (41883ms) + ✓ LayoutView;n=16384 (209030ms) + ✓ LayoutView;n=32768 (799716ms) + ✓ LayoutView;n=65536 (3052244ms) + ✓ LayoutSQL;n=16 (14ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (14ms) + ✓ LayoutSQL;n=128 (43ms) + ✓ LayoutSQL;n=256 (85ms) + ✓ LayoutSQL;n=512 (532ms) + ✓ LayoutSQL;n=1024 (1529ms) + ✓ LayoutSQL;n=2048 (1441ms) + ✓ LayoutSQL;n=4096 (4962ms) + ✓ LayoutSQL;n=8192 (21836ms) + ✓ LayoutSQL;n=16384 (149480ms) + ✓ LayoutSQL;n=32768 (601944ms) + ✓ LayoutSQL;n=65536 (3470671ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..03dd77126f44cef18d94c63d2e0010f54a6df1e7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run16.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (76ms) + ✓ LayoutView;n=32 (16ms) + ✓ LayoutView;n=64 (23ms) + ✓ LayoutView;n=128 (115ms) + ✓ LayoutView;n=256 (78ms) + ✓ LayoutView;n=512 (335ms) + ✓ LayoutView;n=1024 (962ms) + ✓ LayoutView;n=2048 (3481ms) + ✓ LayoutView;n=4096 (11665ms) + ✓ LayoutView;n=8192 (41344ms) + ✓ LayoutView;n=16384 (177355ms) + ✓ LayoutView;n=32768 (870733ms) + ✓ LayoutView;n=65536 (2825164ms) + ✓ LayoutSQL;n=16 (29ms) + ✓ LayoutSQL;n=32 (11ms) + ✓ LayoutSQL;n=64 (16ms) + ✓ LayoutSQL;n=128 (58ms) + ✓ LayoutSQL;n=256 (75ms) + ✓ LayoutSQL;n=512 (186ms) + ✓ LayoutSQL;n=1024 (342ms) + ✓ LayoutSQL;n=2048 (1302ms) + ✓ LayoutSQL;n=4096 (6489ms) + ✓ LayoutSQL;n=8192 (26033ms) + ✓ LayoutSQL;n=16384 (182979ms) + ✓ LayoutSQL;n=32768 (661728ms) + ✓ LayoutSQL;n=65536 (3469782ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..ebc3586778bfd61a88a3f03609f63a5e9b128b1f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run17.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (83ms) + ✓ LayoutView;n=32 (16ms) + ✓ LayoutView;n=64 (31ms) + ✓ LayoutView;n=128 (64ms) + ✓ LayoutView;n=256 (220ms) + ✓ LayoutView;n=512 (302ms) + ✓ LayoutView;n=1024 (939ms) + ✓ LayoutView;n=2048 (3802ms) + ✓ LayoutView;n=4096 (11330ms) + ✓ LayoutView;n=8192 (53202ms) + ✓ LayoutView;n=16384 (176410ms) + ✓ LayoutView;n=32768 (910362ms) + ✓ LayoutView;n=65536 (2919261ms) + ✓ LayoutSQL;n=16 (64ms) + ✓ LayoutSQL;n=32 (33ms) + ✓ LayoutSQL;n=64 (62ms) + ✓ LayoutSQL;n=128 (156ms) + ✓ LayoutSQL;n=256 (237ms) + ✓ LayoutSQL;n=512 (1158ms) + ✓ LayoutSQL;n=1024 (3288ms) + ✓ LayoutSQL;n=2048 (3066ms) + ✓ LayoutSQL;n=4096 (8782ms) + ✓ LayoutSQL;n=8192 (20984ms) + ✓ LayoutSQL;n=16384 (155542ms) + ✓ LayoutSQL;n=32768 (648829ms) + ✓ LayoutSQL;n=65536 (3569747ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..00e9a80e3c7ffaac515182192bb0da6545dbbf6c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run18.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (88ms) + ✓ LayoutView;n=32 (19ms) + ✓ LayoutView;n=64 (28ms) + ✓ LayoutView;n=128 (169ms) + ✓ LayoutView;n=256 (79ms) + ✓ LayoutView;n=512 (303ms) + ✓ LayoutView;n=1024 (822ms) + ✓ LayoutView;n=2048 (3217ms) + ✓ LayoutView;n=4096 (12835ms) + ✓ LayoutView;n=8192 (53995ms) + ✓ LayoutView;n=16384 (223244ms) + ✓ LayoutView;n=32768 (774716ms) + ✓ LayoutView;n=65536 (2816560ms) + ✓ LayoutSQL;n=16 (48ms) + ✓ LayoutSQL;n=32 (23ms) + ✓ LayoutSQL;n=64 (34ms) + ✓ LayoutSQL;n=128 (79ms) + ✓ LayoutSQL;n=256 (183ms) + ✓ LayoutSQL;n=512 (646ms) + ✓ LayoutSQL;n=1024 (3596ms) + ✓ LayoutSQL;n=2048 (1620ms) + ✓ LayoutSQL;n=4096 (11403ms) + ✓ LayoutSQL;n=8192 (49622ms) + ✓ LayoutSQL;n=16384 (181750ms) + ✓ LayoutSQL;n=32768 (597186ms) + ✓ LayoutSQL;n=65536 (3722420ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..442d17dd175d8af910e4f72ea14e477f04c4d4fa --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run19.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (57ms) + ✓ LayoutView;n=32 (15ms) + ✓ LayoutView;n=64 (23ms) + ✓ LayoutView;n=128 (71ms) + ✓ LayoutView;n=256 (128ms) + ✓ LayoutView;n=512 (275ms) + ✓ LayoutView;n=1024 (876ms) + ✓ LayoutView;n=2048 (3169ms) + ✓ LayoutView;n=4096 (11589ms) + ✓ LayoutView;n=8192 (40705ms) + ✓ LayoutView;n=16384 (215786ms) + ✓ LayoutView;n=32768 (836277ms) + ✓ LayoutView;n=65536 (3171156ms) + ✓ LayoutSQL;n=16 (39ms) + ✓ LayoutSQL;n=32 (34ms) + ✓ LayoutSQL;n=64 (43ms) + ✓ LayoutSQL;n=128 (97ms) + ✓ LayoutSQL;n=256 (168ms) + ✓ LayoutSQL;n=512 (1013ms) + ✓ LayoutSQL;n=1024 (2646ms) + ✓ LayoutSQL;n=2048 (2133ms) + ✓ LayoutSQL;n=4096 (9877ms) + ✓ LayoutSQL;n=8192 (40256ms) + ✓ LayoutSQL;n=16384 (146841ms) + ✓ LayoutSQL;n=32768 (635689ms) + ✓ LayoutSQL;n=65536 (3487022ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..dc07a654d63a88daae1bf493c0de4fbba26ef597 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run2.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (74ms) + ✓ LayoutView;n=32 (22ms) + ✓ LayoutView;n=64 (16ms) + ✓ LayoutView;n=128 (68ms) + ✓ LayoutView;n=256 (173ms) + ✓ LayoutView;n=512 (295ms) + ✓ LayoutView;n=1024 (839ms) + ✓ LayoutView;n=2048 (3420ms) + ✓ LayoutView;n=4096 (12005ms) + ✓ LayoutView;n=8192 (55435ms) + ✓ LayoutView;n=16384 (244365ms) + ✓ LayoutView;n=32768 (982006ms) + ✓ LayoutView;n=65536 (3145722ms) + ✓ LayoutSQL;n=16 (48ms) + ✓ LayoutSQL;n=32 (37ms) + ✓ LayoutSQL;n=64 (41ms) + ✓ LayoutSQL;n=128 (112ms) + ✓ LayoutSQL;n=256 (163ms) + ✓ LayoutSQL;n=512 (1085ms) + ✓ LayoutSQL;n=1024 (3141ms) + ✓ LayoutSQL;n=2048 (2478ms) + ✓ LayoutSQL;n=4096 (10024ms) + ✓ LayoutSQL;n=8192 (39163ms) + ✓ LayoutSQL;n=16384 (142472ms) + ✓ LayoutSQL;n=32768 (593219ms) + ✓ LayoutSQL;n=65536 (3557820ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..bccb6c2f85b3f71e1540087fa131daaa9b46f4ad --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run20.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (110ms) + ✓ LayoutView;n=32 (32ms) + ✓ LayoutView;n=64 (37ms) + ✓ LayoutView;n=128 (91ms) + ✓ LayoutView;n=256 (288ms) + ✓ LayoutView;n=512 (596ms) + ✓ LayoutView;n=1024 (4856ms) + ✓ LayoutView;n=2048 (5327ms) + ✓ LayoutView;n=4096 (11769ms) + ✓ LayoutView;n=8192 (51114ms) + ✓ LayoutView;n=16384 (205633ms) + ✓ LayoutView;n=32768 (813715ms) + ✓ LayoutView;n=65536 (3249125ms) + ✓ LayoutSQL;n=16 (24ms) + ✓ LayoutSQL;n=32 (12ms) + ✓ LayoutSQL;n=64 (16ms) + ✓ LayoutSQL;n=128 (52ms) + ✓ LayoutSQL;n=256 (74ms) + ✓ LayoutSQL;n=512 (215ms) + ✓ LayoutSQL;n=1024 (708ms) + ✓ LayoutSQL;n=2048 (2581ms) + ✓ LayoutSQL;n=4096 (10333ms) + ✓ LayoutSQL;n=8192 (42143ms) + ✓ LayoutSQL;n=16384 (132206ms) + ✓ LayoutSQL;n=32768 (601664ms) + ✓ LayoutSQL;n=65536 (3497059ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..79f25510564a9b584b69f71e63c22d796fb44f88 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run3.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (18ms) + ✓ LayoutView;n=32 (7ms) + ✓ LayoutView;n=64 (8ms) + ✓ LayoutView;n=128 (27ms) + ✓ LayoutView;n=256 (81ms) + ✓ LayoutView;n=512 (700ms) + ✓ LayoutView;n=1024 (4007ms) + ✓ LayoutView;n=2048 (8444ms) + ✓ LayoutView;n=4096 (14096ms) + ✓ LayoutView;n=8192 (47508ms) + ✓ LayoutView;n=16384 (198695ms) + ✓ LayoutView;n=32768 (851589ms) + ✓ LayoutView;n=65536 (3120318ms) + ✓ LayoutSQL;n=16 (12ms) + ✓ LayoutSQL;n=32 (8ms) + ✓ LayoutSQL;n=64 (12ms) + ✓ LayoutSQL;n=128 (37ms) + ✓ LayoutSQL;n=256 (118ms) + ✓ LayoutSQL;n=512 (950ms) + ✓ LayoutSQL;n=1024 (2676ms) + ✓ LayoutSQL;n=2048 (2164ms) + ✓ LayoutSQL;n=4096 (8308ms) + ✓ LayoutSQL;n=8192 (40214ms) + ✓ LayoutSQL;n=16384 (142405ms) + ✓ LayoutSQL;n=32768 (585672ms) + ✓ LayoutSQL;n=65536 (3584701ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..f1d05e61ac9ba32a8663b4d500e425c471dfdca0 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run4.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (76ms) + ✓ LayoutView;n=32 (21ms) + ✓ LayoutView;n=64 (15ms) + ✓ LayoutView;n=128 (49ms) + ✓ LayoutView;n=256 (154ms) + ✓ LayoutView;n=512 (258ms) + ✓ LayoutView;n=1024 (743ms) + ✓ LayoutView;n=2048 (3077ms) + ✓ LayoutView;n=4096 (11528ms) + ✓ LayoutView;n=8192 (50272ms) + ✓ LayoutView;n=16384 (203064ms) + ✓ LayoutView;n=32768 (830691ms) + ✓ LayoutView;n=65536 (3141673ms) + ✓ LayoutSQL;n=16 (35ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (14ms) + ✓ LayoutSQL;n=128 (41ms) + ✓ LayoutSQL;n=256 (81ms) + ✓ LayoutSQL;n=512 (501ms) + ✓ LayoutSQL;n=1024 (2245ms) + ✓ LayoutSQL;n=2048 (2050ms) + ✓ LayoutSQL;n=4096 (4903ms) + ✓ LayoutSQL;n=8192 (29300ms) + ✓ LayoutSQL;n=16384 (128780ms) + ✓ LayoutSQL;n=32768 (631900ms) + ✓ LayoutSQL;n=65536 (3648128ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..d5ddbf78a2e0f5d59125cdc4d6455509e381a19d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run5.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (84ms) + ✓ LayoutView;n=32 (21ms) + ✓ LayoutView;n=64 (142ms) + ✓ LayoutView;n=128 (89ms) + ✓ LayoutView;n=256 (97ms) + ✓ LayoutView;n=512 (330ms) + ✓ LayoutView;n=1024 (981ms) + ✓ LayoutView;n=2048 (3924ms) + ✓ LayoutView;n=4096 (13750ms) + ✓ LayoutView;n=8192 (54230ms) + ✓ LayoutView;n=16384 (198099ms) + ✓ LayoutView;n=32768 (828673ms) + ✓ LayoutView;n=65536 (2996893ms) + ✓ LayoutSQL;n=16 (25ms) + ✓ LayoutSQL;n=32 (11ms) + ✓ LayoutSQL;n=64 (18ms) + ✓ LayoutSQL;n=128 (58ms) + ✓ LayoutSQL;n=256 (77ms) + ✓ LayoutSQL;n=512 (241ms) + ✓ LayoutSQL;n=1024 (815ms) + ✓ LayoutSQL;n=2048 (3409ms) + ✓ LayoutSQL;n=4096 (14304ms) + ✓ LayoutSQL;n=8192 (48673ms) + ✓ LayoutSQL;n=16384 (183429ms) + ✓ LayoutSQL;n=32768 (723872ms) + ✓ LayoutSQL;n=65536 (3783762ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..fa3ce2e043cafd1f5fba6af55e7583b117d80d3d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run6.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (55ms) + ✓ LayoutView;n=32 (12ms) + ✓ LayoutView;n=64 (20ms) + ✓ LayoutView;n=128 (59ms) + ✓ LayoutView;n=256 (69ms) + ✓ LayoutView;n=512 (261ms) + ✓ LayoutView;n=1024 (695ms) + ✓ LayoutView;n=2048 (2703ms) + ✓ LayoutView;n=4096 (11151ms) + ✓ LayoutView;n=8192 (45546ms) + ✓ LayoutView;n=16384 (173229ms) + ✓ LayoutView;n=32768 (813571ms) + ✓ LayoutView;n=65536 (3151742ms) + ✓ LayoutSQL;n=16 (24ms) + ✓ LayoutSQL;n=32 (14ms) + ✓ LayoutSQL;n=64 (16ms) + ✓ LayoutSQL;n=128 (48ms) + ✓ LayoutSQL;n=256 (74ms) + ✓ LayoutSQL;n=512 (248ms) + ✓ LayoutSQL;n=1024 (821ms) + ✓ LayoutSQL;n=2048 (3172ms) + ✓ LayoutSQL;n=4096 (12796ms) + ✓ LayoutSQL;n=8192 (33568ms) + ✓ LayoutSQL;n=16384 (149168ms) + ✓ LayoutSQL;n=32768 (587302ms) + ✓ LayoutSQL;n=65536 (3543227ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..0a2d3f44bc4ef2b75145d1f59ee596194436fd58 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run7.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (64ms) + ✓ LayoutView;n=32 (21ms) + ✓ LayoutView;n=64 (15ms) + ✓ LayoutView;n=128 (54ms) + ✓ LayoutView;n=256 (70ms) + ✓ LayoutView;n=512 (326ms) + ✓ LayoutView;n=1024 (699ms) + ✓ LayoutView;n=2048 (3284ms) + ✓ LayoutView;n=4096 (10720ms) + ✓ LayoutView;n=8192 (42684ms) + ✓ LayoutView;n=16384 (211552ms) + ✓ LayoutView;n=32768 (838992ms) + ✓ LayoutView;n=65536 (3213297ms) + ✓ LayoutSQL;n=16 (37ms) + ✓ LayoutSQL;n=32 (20ms) + ✓ LayoutSQL;n=64 (27ms) + ✓ LayoutSQL;n=128 (80ms) + ✓ LayoutSQL;n=256 (160ms) + ✓ LayoutSQL;n=512 (937ms) + ✓ LayoutSQL;n=1024 (3047ms) + ✓ LayoutSQL;n=2048 (2350ms) + ✓ LayoutSQL;n=4096 (10435ms) + ✓ LayoutSQL;n=8192 (39484ms) + ✓ LayoutSQL;n=16384 (165785ms) + ✓ LayoutSQL;n=32768 (577259ms) + ✓ LayoutSQL;n=65536 (3611263ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..4650ceae667e73610390893f3a8972e213a92484 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run8.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (75ms) + ✓ LayoutView;n=32 (21ms) + ✓ LayoutView;n=64 (40ms) + ✓ LayoutView;n=128 (97ms) + ✓ LayoutView;n=256 (128ms) + ✓ LayoutView;n=512 (653ms) + ✓ LayoutView;n=1024 (3490ms) + ✓ LayoutView;n=2048 (4718ms) + ✓ LayoutView;n=4096 (11865ms) + ✓ LayoutView;n=8192 (40723ms) + ✓ LayoutView;n=16384 (172837ms) + ✓ LayoutView;n=32768 (727642ms) + ✓ LayoutView;n=65536 (3027508ms) + ✓ LayoutSQL;n=16 (12ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (27ms) + ✓ LayoutSQL;n=256 (36ms) + ✓ LayoutSQL;n=512 (317ms) + ✓ LayoutSQL;n=1024 (835ms) + ✓ LayoutSQL;n=2048 (3590ms) + ✓ LayoutSQL;n=4096 (13062ms) + ✓ LayoutSQL;n=8192 (55103ms) + ✓ LayoutSQL;n=16384 (172668ms) + ✓ LayoutSQL;n=32768 (608508ms) + ✓ LayoutSQL;n=65536 (3526868ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-03/linear2/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..571abefc485707b637ef837345e7294989858d57 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear2/run9.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (89ms) + ✓ LayoutView;n=32 (27ms) + ✓ LayoutView;n=64 (36ms) + ✓ LayoutView;n=128 (205ms) + ✓ LayoutView;n=256 (84ms) + ✓ LayoutView;n=512 (304ms) + ✓ LayoutView;n=1024 (941ms) + ✓ LayoutView;n=2048 (4173ms) + ✓ LayoutView;n=4096 (13779ms) + ✓ LayoutView;n=8192 (55269ms) + ✓ LayoutView;n=16384 (207089ms) + ✓ LayoutView;n=32768 (871646ms) + ✓ LayoutView;n=65536 (2870575ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (8ms) + ✓ LayoutSQL;n=128 (24ms) + ✓ LayoutSQL;n=256 (35ms) + ✓ LayoutSQL;n=512 (104ms) + ✓ LayoutSQL;n=1024 (353ms) + ✓ LayoutSQL;n=2048 (1791ms) + ✓ LayoutSQL;n=4096 (5135ms) + ✓ LayoutSQL;n=8192 (23440ms) + ✓ LayoutSQL;n=16384 (163649ms) + ✓ LayoutSQL;n=32768 (663640ms) + ✓ LayoutSQL;n=65536 (3758999ms) + + + 26 passing (2h) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..a58a56a5cd6690bf3625bf78d0d19f784d610f38 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 387.25 +Mediana = 431.5 +Variancia = 14700.93 +Desvio Padrao = 121.25 +Coef. Variacao = 0.31 +Min = 200 +Max = 560 +Esq, Dir. = 342.6551 , 431.8449 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..5faa7dd91c1e0c0452fb1fa3331d3840c3517279 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutSQL.res @@ -0,0 +1,20 @@ +1024 425 +1024 471 +1024 308 +1024 503 +1024 418 +1024 200 +1024 206 +1024 486 +1024 495 +1024 238 +1024 207 +1024 343 +1024 560 +1024 226 +1024 310 +1024 438 +1024 549 +1024 462 +1024 461 +1024 439 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..dfaa3b1d4c0c4fd6c1c4f4b62a4442ebcd2b1a5f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.R @@ -0,0 +1,8 @@ +Media = 959 +Mediana = 975.5 +Variancia = 46965.26 +Desvio Padrao = 216.71 +Coef. Variacao = 0.23 +Min = 259 +Max = 1244 +Esq, Dir. = 879.2922 , 1038.7078 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..415d442699c8a9cfdd123aaf143038805f15f0ca --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/1024-LayoutView.res @@ -0,0 +1,20 @@ +1024 965 +1024 1089 +1024 991 +1024 1057 +1024 940 +1024 658 +1024 990 +1024 1244 +1024 1182 +1024 906 +1024 869 +1024 985 +1024 891 +1024 909 +1024 875 +1024 259 +1024 1203 +1024 977 +1024 1216 +1024 974 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..5c9c5101b4aeb01c676990bd6fb7ef0206f046d7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 40.1 +Mediana = 37.5 +Variancia = 166.52 +Desvio Padrao = 12.9 +Coef. Variacao = 0.32 +Min = 19 +Max = 70 +Esq, Dir. = 35.3539 , 44.8461 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..ef0708598a578be98299bb4b3dbcca17e1951b06 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutSQL.res @@ -0,0 +1,20 @@ +128 41 +128 37 +128 36 +128 38 +128 34 +128 29 +128 33 +128 43 +128 35 +128 37 +128 53 +128 28 +128 70 +128 45 +128 19 +128 40 +128 22 +128 56 +128 41 +128 65 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..e313154213711b87607768bb29bc8ee0b9d10433 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.R @@ -0,0 +1,8 @@ +Media = 51.55 +Mediana = 50 +Variancia = 466.68 +Desvio Padrao = 21.6 +Coef. Variacao = 0.42 +Min = 17 +Max = 91 +Esq, Dir. = 43.6045 , 59.4955 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..897abf8765b2d3a2245d4a090468a56fee5c3693 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/128-LayoutView.res @@ -0,0 +1,20 @@ +128 65 +128 91 +128 30 +128 31 +128 59 +128 32 +128 39 +128 80 +128 63 +128 82 +128 31 +128 31 +128 45 +128 39 +128 64 +128 17 +128 55 +128 69 +128 77 +128 31 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..304fb36877f86a676b5fb920ed2704aa15c42960 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 16.4 +Mediana = 17 +Variancia = 27.52 +Desvio Padrao = 5.25 +Coef. Variacao = 0.32 +Min = 8 +Max = 24 +Esq, Dir. = 14.4707 , 18.3293 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..59d834a051ccb3fd042c15cae20530fd59a76e44 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutSQL.res @@ -0,0 +1,20 @@ +16 9 +16 18 +16 16 +16 21 +16 17 +16 18 +16 17 +16 17 +16 16 +16 23 +16 18 +16 9 +16 24 +16 9 +16 8 +16 13 +16 10 +16 24 +16 23 +16 18 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..41b46ba8cb2fea6556c5e3662ad899bade803b20 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.R @@ -0,0 +1,8 @@ +Media = 45.35 +Mediana = 48 +Variancia = 287.29 +Desvio Padrao = 16.95 +Coef. Variacao = 0.37 +Min = 23 +Max = 79 +Esq, Dir. = 39.1159 , 51.5841 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..826da35d0c02c8a40044a60c79e062f4273b54de --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16-LayoutView.res @@ -0,0 +1,20 @@ +16 56 +16 72 +16 34 +16 27 +16 48 +16 55 +16 23 +16 70 +16 48 +16 79 +16 26 +16 27 +16 34 +16 31 +16 50 +16 40 +16 50 +16 57 +16 56 +16 24 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..c6b75d7c8e906de1c4165a0eb207b77d60e1d3f1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 11601.9 +Mediana = 11676 +Variancia = 878795.46 +Desvio Padrao = 937.44 +Coef. Variacao = 0.08 +Min = 10100 +Max = 13358 +Esq, Dir. = 11257.1088 , 11946.6912 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..ff51594af67af6a79069ef8aec65fab80291ebda --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutSQL.res @@ -0,0 +1,20 @@ +16384 10938 +16384 12280 +16384 11534 +16384 11882 +16384 11870 +16384 10100 +16384 12405 +16384 12658 +16384 11271 +16384 11064 +16384 12503 +16384 11958 +16384 13358 +16384 12902 +16384 10100 +16384 10855 +16384 10891 +16384 11512 +16384 11818 +16384 10139 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..2b018fb31b2168cf295fecddb2f6c0a786525cb7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.R @@ -0,0 +1,8 @@ +Media = 11342.5 +Mediana = 11120.5 +Variancia = 2794382.89 +Desvio Padrao = 1671.64 +Coef. Variacao = 0.15 +Min = 9090 +Max = 15085 +Esq, Dir. = 10727.6698 , 11957.3302 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..6ed43ce51d1a1ad58ad8cd9d7c6825c8876b5839 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/16384-LayoutView.res @@ -0,0 +1,20 @@ +16384 9090 +16384 13706 +16384 10097 +16384 11214 +16384 10429 +16384 9924 +16384 10203 +16384 11189 +16384 11179 +16384 11438 +16384 11062 +16384 10866 +16384 14772 +16384 12480 +16384 11322 +16384 13033 +16384 10400 +16384 9574 +16384 15085 +16384 9787 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..0b8cbc0b58cf7c758592b7ecf3172f78f6ee6b30 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 1319.2 +Mediana = 1208 +Variancia = 121097.64 +Desvio Padrao = 347.99 +Coef. Variacao = 0.26 +Min = 963 +Max = 2147 +Esq, Dir. = 1191.2088 , 1447.1912 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..513a8b5414022fc378cf6f912968051d91dcb060 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutSQL.res @@ -0,0 +1,20 @@ +2048 1547 +2048 1172 +2048 1054 +2048 1222 +2048 1087 +2048 1265 +2048 963 +2048 1764 +2048 1079 +2048 1452 +2048 984 +2048 1194 +2048 1995 +2048 983 +2048 1124 +2048 1038 +2048 2147 +2048 1250 +2048 1750 +2048 1314 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..4452d8e64872fa9f6a48871d26afa2bc0e78ce5a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.R @@ -0,0 +1,8 @@ +Media = 1410.3 +Mediana = 1439 +Variancia = 241453.8 +Desvio Padrao = 491.38 +Coef. Variacao = 0.35 +Min = 192 +Max = 2046 +Esq, Dir. = 1229.5704 , 1591.0296 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..7ca1010d73cc5f4e07a3672abbc9b8e2c60e5273 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/2048-LayoutView.res @@ -0,0 +1,20 @@ +2048 505 +2048 1380 +2048 1724 +2048 1336 +2048 1473 +2048 1269 +2048 1434 +2048 1843 +2048 1312 +2048 1490 +2048 1444 +2048 1080 +2048 1762 +2048 2046 +2048 1368 +2048 192 +2048 1869 +2048 731 +2048 2019 +2048 1929 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..d04752ea8f7195e05e7b01253806a68374027832 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 57.75 +Mediana = 55.5 +Variancia = 397.88 +Desvio Padrao = 19.95 +Coef. Variacao = 0.35 +Min = 25 +Max = 95 +Esq, Dir. = 50.4135 , 65.0865 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e342d5fcefae3315745c1cd99a0125d0af741a47 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutSQL.res @@ -0,0 +1,20 @@ +256 53 +256 62 +256 50 +256 56 +256 55 +256 27 +256 50 +256 72 +256 50 +256 32 +256 76 +256 36 +256 95 +256 87 +256 25 +256 60 +256 47 +256 89 +256 58 +256 75 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..3475b56339da265299aec5447420d8a4ed00e6f2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.R @@ -0,0 +1,8 @@ +Media = 135.2 +Mediana = 138 +Variancia = 4594.27 +Desvio Padrao = 67.78 +Coef. Variacao = 0.5 +Min = 41 +Max = 294 +Esq, Dir. = 110.2701 , 160.1299 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..ec53cbce2198d9796bf6fd2848fb9afe4fc84fe6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/256-LayoutView.res @@ -0,0 +1,20 @@ +256 134 +256 192 +256 70 +256 72 +256 243 +256 72 +256 141 +256 174 +256 135 +256 294 +256 70 +256 142 +256 149 +256 89 +256 75 +256 41 +256 232 +256 146 +256 162 +256 71 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..c3a758d539eb2920781c3b610611b733d15c23f7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 11.05 +Mediana = 9 +Variancia = 49.94 +Desvio Padrao = 7.07 +Coef. Variacao = 0.64 +Min = 4 +Max = 34 +Esq, Dir. = 8.4507 , 13.6493 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..1c0573c8946e9e48c63f4371f8403a87ac023de6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutSQL.res @@ -0,0 +1,20 @@ +32 4 +32 13 +32 8 +32 9 +32 9 +32 9 +32 8 +32 24 +32 8 +32 14 +32 9 +32 5 +32 13 +32 14 +32 4 +32 9 +32 5 +32 34 +32 13 +32 9 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..4e7f3c2aa1845fca9cec6fbe22db40e93beddb2d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.R @@ -0,0 +1,8 @@ +Media = 17.05 +Mediana = 14 +Variancia = 84.79 +Desvio Padrao = 9.21 +Coef. Variacao = 0.54 +Min = 7 +Max = 44 +Esq, Dir. = 13.6633 , 20.4367 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..85baf14232c90ad7b6996c20e7647e7d36c3e580 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32-LayoutView.res @@ -0,0 +1,20 @@ +32 27 +32 24 +32 9 +32 9 +32 17 +32 9 +32 9 +32 24 +32 14 +32 26 +32 10 +32 44 +32 13 +32 12 +32 18 +32 7 +32 14 +32 22 +32 24 +32 9 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..ed853bc7a29a03c6d2bb5fce9e9f487f153ddb2d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 55522.9 +Mediana = 54017.5 +Variancia = 46398378.73 +Desvio Padrao = 6811.64 +Coef. Variacao = 0.12 +Min = 44493 +Max = 68604 +Esq, Dir. = 53017.5774 , 58028.2226 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..c77ec7a1a2b0051fb11cfc064e7ab0837352e057 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutSQL.res @@ -0,0 +1,20 @@ +32768 47932 +32768 60590 +32768 49840 +32768 62001 +32768 60847 +32768 47617 +32768 51926 +32768 55998 +32768 53012 +32768 53014 +32768 67528 +32768 62530 +32768 68604 +32768 47664 +32768 44493 +32768 50964 +32768 60565 +32768 57697 +32768 55021 +32768 52615 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..53ab0a53dee0aa56e13d31ba86c3a72cf8f5f0de --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.R @@ -0,0 +1,8 @@ +Media = 44277.7 +Mediana = 42604 +Variancia = 62942887.91 +Desvio Padrao = 7933.66 +Coef. Variacao = 0.18 +Min = 34498 +Max = 64922 +Esq, Dir. = 41359.698 , 47195.702 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..525e9ab8026cc9efa6e5b7f841fd5824f77b12e9 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/32768-LayoutView.res @@ -0,0 +1,20 @@ +32768 35944 +32768 52406 +32768 38514 +32768 37094 +32768 40657 +32768 42648 +32768 42117 +32768 43648 +32768 47970 +32768 41679 +32768 37414 +32768 43299 +32768 64922 +32768 48231 +32768 42560 +32768 48723 +32768 44110 +32768 37935 +32768 61185 +32768 34498 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..e6e7d22e256da18f664481e1081a6043684a6a64 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 6909.1 +Mediana = 6719.5 +Variancia = 1449046.31 +Desvio Padrao = 1203.76 +Coef. Variacao = 0.17 +Min = 4792 +Max = 9086 +Esq, Dir. = 6466.3553 , 7351.8447 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..d133a50aa4215581fae2cae2d22c8faa2338eaf3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutSQL.res @@ -0,0 +1,20 @@ +4096 6799 +4096 8062 +4096 6166 +4096 6693 +4096 6311 +4096 6746 +4096 4930 +4096 8137 +4096 6183 +4096 8289 +4096 4792 +4096 6189 +4096 9086 +4096 7313 +4096 6299 +4096 6872 +4096 8777 +4096 6496 +4096 8323 +4096 5719 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..5e960ce8e2d2ec6f90acb18e17029b5d13da46ee --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.R @@ -0,0 +1,8 @@ +Media = 969.75 +Mediana = 995 +Variancia = 30179.57 +Desvio Padrao = 173.72 +Coef. Variacao = 0.18 +Min = 668 +Max = 1280 +Esq, Dir. = 905.8547 , 1033.6453 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..d92cb56e361a7b30de39b4ce02ba844bd91bd213 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/4096-LayoutView.res @@ -0,0 +1,20 @@ +4096 668 +4096 1055 +4096 825 +4096 774 +4096 857 +4096 844 +4096 1009 +4096 1026 +4096 840 +4096 1280 +4096 888 +4096 1102 +4096 1078 +4096 982 +4096 716 +4096 858 +4096 1216 +4096 1151 +4096 1008 +4096 1218 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..7b1e1619bdd58f21ad78cfb7dce61f6612a80182 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 123.25 +Mediana = 125.5 +Variancia = 1881.57 +Desvio Padrao = 43.38 +Coef. Variacao = 0.35 +Min = 54 +Max = 188 +Esq, Dir. = 107.2959 , 139.2041 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..113e69e4ea4b75c6ffaaeaab5d12ff3fdeb00530 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutSQL.res @@ -0,0 +1,20 @@ +512 174 +512 156 +512 107 +512 113 +512 111 +512 54 +512 83 +512 150 +512 119 +512 67 +512 69 +512 80 +512 188 +512 154 +512 58 +512 182 +512 132 +512 169 +512 144 +512 155 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..97660f969b1ec3da06610b18943d5bec208d194d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.R @@ -0,0 +1,8 @@ +Media = 298.35 +Mediana = 310.5 +Variancia = 12632.24 +Desvio Padrao = 112.39 +Coef. Variacao = 0.38 +Min = 58 +Max = 476 +Esq, Dir. = 257.0117 , 339.6883 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..c2480cc09ffe6bc41106e9e91a8bb7a78e8c8505 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/512-LayoutView.res @@ -0,0 +1,20 @@ +512 310 +512 352 +512 181 +512 162 +512 308 +512 157 +512 304 +512 476 +512 345 +512 319 +512 267 +512 311 +512 457 +512 377 +512 151 +512 58 +512 466 +512 341 +512 376 +512 249 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..6eeb720ed99c24a0f51b9b1c3663325716d69d4a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 20.1 +Mediana = 23 +Variancia = 31.36 +Desvio Padrao = 5.6 +Coef. Variacao = 0.28 +Min = 9 +Max = 26 +Esq, Dir. = 18.0404 , 22.1596 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..beb83439744feb01ce2f036430b67ba787c6b3f8 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutSQL.res @@ -0,0 +1,20 @@ +64 24 +64 19 +64 23 +64 24 +64 22 +64 24 +64 23 +64 17 +64 17 +64 26 +64 23 +64 10 +64 24 +64 11 +64 9 +64 22 +64 11 +64 25 +64 25 +64 23 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..1cae1ef6c1de21eeacb0b95b5a9dc20efd475902 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.R @@ -0,0 +1,8 @@ +Media = 29.85 +Mediana = 31.5 +Variancia = 166.24 +Desvio Padrao = 12.89 +Coef. Variacao = 0.43 +Min = 15 +Max = 57 +Esq, Dir. = 25.1078 , 34.5922 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..1fe8c7934eb13aaf2c5924081c12947f9277e36d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/64-LayoutView.res @@ -0,0 +1,20 @@ +64 36 +64 47 +64 17 +64 57 +64 32 +64 17 +64 17 +64 40 +64 32 +64 50 +64 17 +64 17 +64 22 +64 20 +64 36 +64 15 +64 36 +64 41 +64 31 +64 17 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..e59be4582a0a39e9610e8c86d9d0b5f369317994 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 199240.6 +Mediana = 206318.5 +Variancia = 381528437.52 +Desvio Padrao = 19532.75 +Coef. Variacao = 0.1 +Min = 157274 +Max = 230386 +Esq, Dir. = 192056.4446 , 206424.7554 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..9828d268d383f9d2cafcf48f64e1827d5d3c0db8 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutSQL.res @@ -0,0 +1,20 @@ +65536 207371 +65536 183504 +65536 213711 +65536 223920 +65536 212819 +65536 230386 +65536 209905 +65536 206217 +65536 218816 +65536 181902 +65536 192927 +65536 215524 +65536 179267 +65536 180416 +65536 167840 +65536 157274 +65536 210702 +65536 206420 +65536 197871 +65536 188020 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..e107fdfc2c526f5fcacf88c44574f11aec91627c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.R @@ -0,0 +1,8 @@ +Media = 182330 +Mediana = 174169 +Variancia = 677653386.63 +Desvio Padrao = 26031.78 +Coef. Variacao = 0.14 +Min = 150502 +Max = 257643 +Esq, Dir. = 172755.5008 , 191904.4992 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..85b4b51da144dec50b152d3bcd9c4e17ba0e6e33 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/65536-LayoutView.res @@ -0,0 +1,20 @@ +65536 156157 +65536 206910 +65536 165603 +65536 164721 +65536 174381 +65536 176155 +65536 168003 +65536 170403 +65536 173957 +65536 207042 +65536 150502 +65536 189497 +65536 257643 +65536 198337 +65536 172509 +65536 199144 +65536 194304 +65536 157059 +65536 211401 +65536 152872 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..8eb3915e79d1520a663791207b7e2cf7b2600db2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 3548.35 +Mediana = 3559.5 +Variancia = 399027.29 +Desvio Padrao = 631.69 +Coef. Variacao = 0.18 +Min = 2323 +Max = 4611 +Esq, Dir. = 3316.0156 , 3780.6844 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..3569f95793dcd56cf7c5daa28eb3967921e7ea5f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutSQL.res @@ -0,0 +1,20 @@ +8192 4056 +8192 3136 +8192 3811 +8192 3863 +8192 3832 +8192 3397 +8192 2323 +8192 4037 +8192 3486 +8192 4196 +8192 3483 +8192 2761 +8192 4611 +8192 4039 +8192 3001 +8192 3222 +8192 4566 +8192 2649 +8192 3633 +8192 2865 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..2a1835e841a0e0f5d7a560e790a0de4fd0035e94 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.R @@ -0,0 +1,8 @@ +Media = 3084.85 +Mediana = 2942.5 +Variancia = 303692.66 +Desvio Padrao = 551.08 +Coef. Variacao = 0.18 +Min = 2366 +Max = 4152 +Esq, Dir. = 2882.1614 , 3287.5386 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..5188fe8978b888b6a48f52a8dc98a93c2a793bd9 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/8192-LayoutView.res @@ -0,0 +1,20 @@ +8192 2455 +8192 3400 +8192 3897 +8192 3145 +8192 2741 +8192 2366 +8192 2794 +8192 2689 +8192 2529 +8192 3033 +8192 2407 +8192 2766 +8192 3843 +8192 3266 +8192 2686 +8192 3641 +8192 4152 +8192 2852 +8192 3187 +8192 3848 diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..dcf301fe41a8896635f56b294ef8065d76b78b24 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run1.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (26ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (70ms) + ✓ LayoutView;n=512 (267ms) + ✓ LayoutView;n=1024 (869ms) + ✓ LayoutView;n=2048 (1444ms) + ✓ LayoutView;n=4096 (888ms) + ✓ LayoutView;n=8192 (2407ms) + ✓ LayoutView;n=16384 (11062ms) + ✓ LayoutView;n=32768 (37414ms) + ✓ LayoutView;n=65536 (150502ms) + ✓ LayoutSQL;n=16 (18ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (23ms) + ✓ LayoutSQL;n=128 (53ms) + ✓ LayoutSQL;n=256 (76ms) + ✓ LayoutSQL;n=512 (69ms) + ✓ LayoutSQL;n=1024 (207ms) + ✓ LayoutSQL;n=2048 (984ms) + ✓ LayoutSQL;n=4096 (4792ms) + ✓ LayoutSQL;n=8192 (3483ms) + ✓ LayoutSQL;n=16384 (12503ms) + ✓ LayoutSQL;n=32768 (67528ms) + ✓ LayoutSQL;n=65536 (192927ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..c5544c161fbeafe4c52dd8888c34ad4ff6e7b5e2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run10.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (79ms) + ✓ LayoutView;n=32 (26ms) + ✓ LayoutView;n=64 (50ms) + ✓ LayoutView;n=128 (82ms) + ✓ LayoutView;n=256 (294ms) + ✓ LayoutView;n=512 (319ms) + ✓ LayoutView;n=1024 (906ms) + ✓ LayoutView;n=2048 (1490ms) + ✓ LayoutView;n=4096 (1280ms) + ✓ LayoutView;n=8192 (3033ms) + ✓ LayoutView;n=16384 (11438ms) + ✓ LayoutView;n=32768 (41679ms) + ✓ LayoutView;n=65536 (207042ms) + ✓ LayoutSQL;n=16 (23ms) + ✓ LayoutSQL;n=32 (14ms) + ✓ LayoutSQL;n=64 (26ms) + ✓ LayoutSQL;n=128 (37ms) + ✓ LayoutSQL;n=256 (32ms) + ✓ LayoutSQL;n=512 (67ms) + ✓ LayoutSQL;n=1024 (238ms) + ✓ LayoutSQL;n=2048 (1452ms) + ✓ LayoutSQL;n=4096 (8289ms) + ✓ LayoutSQL;n=8192 (4196ms) + ✓ LayoutSQL;n=16384 (11064ms) + ✓ LayoutSQL;n=32768 (53014ms) + ✓ LayoutSQL;n=65536 (181902ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..21f86184aae0c3747053d0381f482afc4752def6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run11.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (24ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (71ms) + ✓ LayoutView;n=512 (249ms) + ✓ LayoutView;n=1024 (974ms) + ✓ LayoutView;n=2048 (1929ms) + ✓ LayoutView;n=4096 (1218ms) + ✓ LayoutView;n=8192 (3848ms) + ✓ LayoutView;n=16384 (9787ms) + ✓ LayoutView;n=32768 (34498ms) + ✓ LayoutView;n=65536 (152872ms) + ✓ LayoutSQL;n=16 (18ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (23ms) + ✓ LayoutSQL;n=128 (65ms) + ✓ LayoutSQL;n=256 (75ms) + ✓ LayoutSQL;n=512 (155ms) + ✓ LayoutSQL;n=1024 (439ms) + ✓ LayoutSQL;n=2048 (1314ms) + ✓ LayoutSQL;n=4096 (5719ms) + ✓ LayoutSQL;n=8192 (2865ms) + ✓ LayoutSQL;n=16384 (10139ms) + ✓ LayoutSQL;n=32768 (52615ms) + ✓ LayoutSQL;n=65536 (188020ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..eb2d850c9b5d405484381e10898184349c67ecce --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run12.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (70ms) + ✓ LayoutView;n=32 (24ms) + ✓ LayoutView;n=64 (40ms) + ✓ LayoutView;n=128 (80ms) + ✓ LayoutView;n=256 (174ms) + ✓ LayoutView;n=512 (476ms) + ✓ LayoutView;n=1024 (1244ms) + ✓ LayoutView;n=2048 (1843ms) + ✓ LayoutView;n=4096 (1026ms) + ✓ LayoutView;n=8192 (2689ms) + ✓ LayoutView;n=16384 (11189ms) + ✓ LayoutView;n=32768 (43648ms) + ✓ LayoutView;n=65536 (170403ms) + ✓ LayoutSQL;n=16 (17ms) + ✓ LayoutSQL;n=32 (24ms) + ✓ LayoutSQL;n=64 (17ms) + ✓ LayoutSQL;n=128 (43ms) + ✓ LayoutSQL;n=256 (72ms) + ✓ LayoutSQL;n=512 (150ms) + ✓ LayoutSQL;n=1024 (486ms) + ✓ LayoutSQL;n=2048 (1764ms) + ✓ LayoutSQL;n=4096 (8137ms) + ✓ LayoutSQL;n=8192 (4037ms) + ✓ LayoutSQL;n=16384 (12658ms) + ✓ LayoutSQL;n=32768 (55998ms) + ✓ LayoutSQL;n=65536 (206217ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..7379a355705a45719bbac6fe460187e4248b05ca --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run13.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (40ms) + ✓ LayoutView;n=32 (7ms) + ✓ LayoutView;n=64 (15ms) + ✓ LayoutView;n=128 (17ms) + ✓ LayoutView;n=256 (41ms) + ✓ LayoutView;n=512 (58ms) + ✓ LayoutView;n=1024 (259ms) + ✓ LayoutView;n=2048 (192ms) + ✓ LayoutView;n=4096 (858ms) + ✓ LayoutView;n=8192 (3641ms) + ✓ LayoutView;n=16384 (13033ms) + ✓ LayoutView;n=32768 (48723ms) + ✓ LayoutView;n=65536 (199144ms) + ✓ LayoutSQL;n=16 (13ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (22ms) + ✓ LayoutSQL;n=128 (40ms) + ✓ LayoutSQL;n=256 (60ms) + ✓ LayoutSQL;n=512 (182ms) + ✓ LayoutSQL;n=1024 (438ms) + ✓ LayoutSQL;n=2048 (1038ms) + ✓ LayoutSQL;n=4096 (6872ms) + ✓ LayoutSQL;n=8192 (3222ms) + ✓ LayoutSQL;n=16384 (10855ms) + ✓ LayoutSQL;n=32768 (50964ms) + ✓ LayoutSQL;n=65536 (157274ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..e9bbf3fb16eba6ab81aaa078a623a3fa1857e7ec --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run14.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (27ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (57ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (72ms) + ✓ LayoutView;n=512 (162ms) + ✓ LayoutView;n=1024 (1057ms) + ✓ LayoutView;n=2048 (1336ms) + ✓ LayoutView;n=4096 (774ms) + ✓ LayoutView;n=8192 (3145ms) + ✓ LayoutView;n=16384 (11214ms) + ✓ LayoutView;n=32768 (37094ms) + ✓ LayoutView;n=65536 (164721ms) + ✓ LayoutSQL;n=16 (21ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (24ms) + ✓ LayoutSQL;n=128 (38ms) + ✓ LayoutSQL;n=256 (56ms) + ✓ LayoutSQL;n=512 (113ms) + ✓ LayoutSQL;n=1024 (503ms) + ✓ LayoutSQL;n=2048 (1222ms) + ✓ LayoutSQL;n=4096 (6693ms) + ✓ LayoutSQL;n=8192 (3863ms) + ✓ LayoutSQL;n=16384 (11882ms) + ✓ LayoutSQL;n=32768 (62001ms) + ✓ LayoutSQL;n=65536 (223920ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..954b6bbe04d42bc3b9cb1fbcd6c5a88e495389a7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run15.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (23ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (39ms) + ✓ LayoutView;n=256 (141ms) + ✓ LayoutView;n=512 (304ms) + ✓ LayoutView;n=1024 (990ms) + ✓ LayoutView;n=2048 (1434ms) + ✓ LayoutView;n=4096 (1009ms) + ✓ LayoutView;n=8192 (2794ms) + ✓ LayoutView;n=16384 (10203ms) + ✓ LayoutView;n=32768 (42117ms) + ✓ LayoutView;n=65536 (168003ms) + ✓ LayoutSQL;n=16 (17ms) + ✓ LayoutSQL;n=32 (8ms) + ✓ LayoutSQL;n=64 (23ms) + ✓ LayoutSQL;n=128 (33ms) + ✓ LayoutSQL;n=256 (50ms) + ✓ LayoutSQL;n=512 (83ms) + ✓ LayoutSQL;n=1024 (206ms) + ✓ LayoutSQL;n=2048 (963ms) + ✓ LayoutSQL;n=4096 (4930ms) + ✓ LayoutSQL;n=8192 (2323ms) + ✓ LayoutSQL;n=16384 (12405ms) + ✓ LayoutSQL;n=32768 (51926ms) + ✓ LayoutSQL;n=65536 (209905ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..c80683b3167c740db385be7fd5523f101391fe4f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run16.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (56ms) + ✓ LayoutView;n=32 (24ms) + ✓ LayoutView;n=64 (31ms) + ✓ LayoutView;n=128 (77ms) + ✓ LayoutView;n=256 (162ms) + ✓ LayoutView;n=512 (376ms) + ✓ LayoutView;n=1024 (1216ms) + ✓ LayoutView;n=2048 (2019ms) + ✓ LayoutView;n=4096 (1008ms) + ✓ LayoutView;n=8192 (3187ms) + ✓ LayoutView;n=16384 (15085ms) + ✓ LayoutView;n=32768 (61185ms) + ✓ LayoutView;n=65536 (211401ms) + ✓ LayoutSQL;n=16 (23ms) + ✓ LayoutSQL;n=32 (13ms) + ✓ LayoutSQL;n=64 (25ms) + ✓ LayoutSQL;n=128 (41ms) + ✓ LayoutSQL;n=256 (58ms) + ✓ LayoutSQL;n=512 (144ms) + ✓ LayoutSQL;n=1024 (461ms) + ✓ LayoutSQL;n=2048 (1750ms) + ✓ LayoutSQL;n=4096 (8323ms) + ✓ LayoutSQL;n=8192 (3633ms) + ✓ LayoutSQL;n=16384 (11818ms) + ✓ LayoutSQL;n=32768 (55021ms) + ✓ LayoutSQL;n=65536 (197871ms) + + + 26 passing (10m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..08b06287acb94d817fc20d01599d4e781e6b6a72 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run17.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (27ms) + ✓ LayoutView;n=32 (44ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (142ms) + ✓ LayoutView;n=512 (311ms) + ✓ LayoutView;n=1024 (985ms) + ✓ LayoutView;n=2048 (1080ms) + ✓ LayoutView;n=4096 (1102ms) + ✓ LayoutView;n=8192 (2766ms) + ✓ LayoutView;n=16384 (10866ms) + ✓ LayoutView;n=32768 (43299ms) + ✓ LayoutView;n=65536 (189497ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (28ms) + ✓ LayoutSQL;n=256 (36ms) + ✓ LayoutSQL;n=512 (80ms) + ✓ LayoutSQL;n=1024 (343ms) + ✓ LayoutSQL;n=2048 (1194ms) + ✓ LayoutSQL;n=4096 (6189ms) + ✓ LayoutSQL;n=8192 (2761ms) + ✓ LayoutSQL;n=16384 (11958ms) + ✓ LayoutSQL;n=32768 (62530ms) + ✓ LayoutSQL;n=65536 (215524ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..6725c1ac185900dbb2cd6bdaff43facd2ee7b78f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run18.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (57ms) + ✓ LayoutView;n=32 (22ms) + ✓ LayoutView;n=64 (41ms) + ✓ LayoutView;n=128 (69ms) + ✓ LayoutView;n=256 (146ms) + ✓ LayoutView;n=512 (341ms) + ✓ LayoutView;n=1024 (977ms) + ✓ LayoutView;n=2048 (731ms) + ✓ LayoutView;n=4096 (1151ms) + ✓ LayoutView;n=8192 (2852ms) + ✓ LayoutView;n=16384 (9574ms) + ✓ LayoutView;n=32768 (37935ms) + ✓ LayoutView;n=65536 (157059ms) + ✓ LayoutSQL;n=16 (24ms) + ✓ LayoutSQL;n=32 (34ms) + ✓ LayoutSQL;n=64 (25ms) + ✓ LayoutSQL;n=128 (56ms) + ✓ LayoutSQL;n=256 (89ms) + ✓ LayoutSQL;n=512 (169ms) + ✓ LayoutSQL;n=1024 (462ms) + ✓ LayoutSQL;n=2048 (1250ms) + ✓ LayoutSQL;n=4096 (6496ms) + ✓ LayoutSQL;n=8192 (2649ms) + ✓ LayoutSQL;n=16384 (11512ms) + ✓ LayoutSQL;n=32768 (57697ms) + ✓ LayoutSQL;n=65536 (206420ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..b953a3a8e81156846a241d75216d83cb132dea74 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run19.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (56ms) + ✓ LayoutView;n=32 (27ms) + ✓ LayoutView;n=64 (36ms) + ✓ LayoutView;n=128 (65ms) + ✓ LayoutView;n=256 (134ms) + ✓ LayoutView;n=512 (310ms) + ✓ LayoutView;n=1024 (965ms) + ✓ LayoutView;n=2048 (505ms) + ✓ LayoutView;n=4096 (668ms) + ✓ LayoutView;n=8192 (2455ms) + ✓ LayoutView;n=16384 (9090ms) + ✓ LayoutView;n=32768 (35944ms) + ✓ LayoutView;n=65536 (156157ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (24ms) + ✓ LayoutSQL;n=128 (41ms) + ✓ LayoutSQL;n=256 (53ms) + ✓ LayoutSQL;n=512 (174ms) + ✓ LayoutSQL;n=1024 (425ms) + ✓ LayoutSQL;n=2048 (1547ms) + ✓ LayoutSQL;n=4096 (6799ms) + ✓ LayoutSQL;n=8192 (4056ms) + ✓ LayoutSQL;n=16384 (10938ms) + ✓ LayoutSQL;n=32768 (47932ms) + ✓ LayoutSQL;n=65536 (207371ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..bc6103a42f93f1d56a0b9f3514843f566c3797db --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run2.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (34ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (30ms) + ✓ LayoutView;n=256 (70ms) + ✓ LayoutView;n=512 (181ms) + ✓ LayoutView;n=1024 (991ms) + ✓ LayoutView;n=2048 (1724ms) + ✓ LayoutView;n=4096 (825ms) + ✓ LayoutView;n=8192 (3897ms) + ✓ LayoutView;n=16384 (10097ms) + ✓ LayoutView;n=32768 (38514ms) + ✓ LayoutView;n=65536 (165603ms) + ✓ LayoutSQL;n=16 (16ms) + ✓ LayoutSQL;n=32 (8ms) + ✓ LayoutSQL;n=64 (23ms) + ✓ LayoutSQL;n=128 (36ms) + ✓ LayoutSQL;n=256 (50ms) + ✓ LayoutSQL;n=512 (107ms) + ✓ LayoutSQL;n=1024 (308ms) + ✓ LayoutSQL;n=2048 (1054ms) + ✓ LayoutSQL;n=4096 (6166ms) + ✓ LayoutSQL;n=8192 (3811ms) + ✓ LayoutSQL;n=16384 (11534ms) + ✓ LayoutSQL;n=32768 (49840ms) + ✓ LayoutSQL;n=65536 (213711ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..56601f0f7f43022f448155af30026aed934ce414 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run20.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (72ms) + ✓ LayoutView;n=32 (24ms) + ✓ LayoutView;n=64 (47ms) + ✓ LayoutView;n=128 (91ms) + ✓ LayoutView;n=256 (192ms) + ✓ LayoutView;n=512 (352ms) + ✓ LayoutView;n=1024 (1089ms) + ✓ LayoutView;n=2048 (1380ms) + ✓ LayoutView;n=4096 (1055ms) + ✓ LayoutView;n=8192 (3400ms) + ✓ LayoutView;n=16384 (13706ms) + ✓ LayoutView;n=32768 (52406ms) + ✓ LayoutView;n=65536 (206910ms) + ✓ LayoutSQL;n=16 (18ms) + ✓ LayoutSQL;n=32 (13ms) + ✓ LayoutSQL;n=64 (19ms) + ✓ LayoutSQL;n=128 (37ms) + ✓ LayoutSQL;n=256 (62ms) + ✓ LayoutSQL;n=512 (156ms) + ✓ LayoutSQL;n=1024 (471ms) + ✓ LayoutSQL;n=2048 (1172ms) + ✓ LayoutSQL;n=4096 (8062ms) + ✓ LayoutSQL;n=8192 (3136ms) + ✓ LayoutSQL;n=16384 (12280ms) + ✓ LayoutSQL;n=32768 (60590ms) + ✓ LayoutSQL;n=65536 (183504ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..0908f157bbd846e85d5573731cd136a5ae9b27a6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run3.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (50ms) + ✓ LayoutView;n=32 (14ms) + ✓ LayoutView;n=64 (36ms) + ✓ LayoutView;n=128 (55ms) + ✓ LayoutView;n=256 (232ms) + ✓ LayoutView;n=512 (466ms) + ✓ LayoutView;n=1024 (1203ms) + ✓ LayoutView;n=2048 (1869ms) + ✓ LayoutView;n=4096 (1216ms) + ✓ LayoutView;n=8192 (4152ms) + ✓ LayoutView;n=16384 (10400ms) + ✓ LayoutView;n=32768 (44110ms) + ✓ LayoutView;n=65536 (194304ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (11ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (47ms) + ✓ LayoutSQL;n=512 (132ms) + ✓ LayoutSQL;n=1024 (549ms) + ✓ LayoutSQL;n=2048 (2147ms) + ✓ LayoutSQL;n=4096 (8777ms) + ✓ LayoutSQL;n=8192 (4566ms) + ✓ LayoutSQL;n=16384 (10891ms) + ✓ LayoutSQL;n=32768 (60565ms) + ✓ LayoutSQL;n=65536 (210702ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..cb8c189227e5ad4161c5f105dd1084bc4f0e80a1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run4.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (50ms) + ✓ LayoutView;n=32 (18ms) + ✓ LayoutView;n=64 (36ms) + ✓ LayoutView;n=128 (64ms) + ✓ LayoutView;n=256 (75ms) + ✓ LayoutView;n=512 (151ms) + ✓ LayoutView;n=1024 (875ms) + ✓ LayoutView;n=2048 (1368ms) + ✓ LayoutView;n=4096 (716ms) + ✓ LayoutView;n=8192 (2686ms) + ✓ LayoutView;n=16384 (11322ms) + ✓ LayoutView;n=32768 (42560ms) + ✓ LayoutView;n=65536 (172509ms) + ✓ LayoutSQL;n=16 (8ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (19ms) + ✓ LayoutSQL;n=256 (25ms) + ✓ LayoutSQL;n=512 (58ms) + ✓ LayoutSQL;n=1024 (310ms) + ✓ LayoutSQL;n=2048 (1124ms) + ✓ LayoutSQL;n=4096 (6299ms) + ✓ LayoutSQL;n=8192 (3001ms) + ✓ LayoutSQL;n=16384 (10100ms) + ✓ LayoutSQL;n=32768 (44493ms) + ✓ LayoutSQL;n=65536 (167840ms) + + + 26 passing (8m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..364800a872809ec6d9bdfb1741957df91575c4ae --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run5.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (48ms) + ✓ LayoutView;n=32 (17ms) + ✓ LayoutView;n=64 (32ms) + ✓ LayoutView;n=128 (59ms) + ✓ LayoutView;n=256 (243ms) + ✓ LayoutView;n=512 (308ms) + ✓ LayoutView;n=1024 (940ms) + ✓ LayoutView;n=2048 (1473ms) + ✓ LayoutView;n=4096 (857ms) + ✓ LayoutView;n=8192 (2741ms) + ✓ LayoutView;n=16384 (10429ms) + ✓ LayoutView;n=32768 (40657ms) + ✓ LayoutView;n=65536 (174381ms) + ✓ LayoutSQL;n=16 (17ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (22ms) + ✓ LayoutSQL;n=128 (34ms) + ✓ LayoutSQL;n=256 (55ms) + ✓ LayoutSQL;n=512 (111ms) + ✓ LayoutSQL;n=1024 (418ms) + ✓ LayoutSQL;n=2048 (1087ms) + ✓ LayoutSQL;n=4096 (6311ms) + ✓ LayoutSQL;n=8192 (3832ms) + ✓ LayoutSQL;n=16384 (11870ms) + ✓ LayoutSQL;n=32768 (60847ms) + ✓ LayoutSQL;n=65536 (212819ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..bec448db10c75238a29d8ccb2fe1a3f944195fde --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run6.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (55ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (32ms) + ✓ LayoutView;n=256 (72ms) + ✓ LayoutView;n=512 (157ms) + ✓ LayoutView;n=1024 (658ms) + ✓ LayoutView;n=2048 (1269ms) + ✓ LayoutView;n=4096 (844ms) + ✓ LayoutView;n=8192 (2366ms) + ✓ LayoutView;n=16384 (9924ms) + ✓ LayoutView;n=32768 (42648ms) + ✓ LayoutView;n=65536 (176155ms) + ✓ LayoutSQL;n=16 (18ms) + ✓ LayoutSQL;n=32 (9ms) + ✓ LayoutSQL;n=64 (24ms) + ✓ LayoutSQL;n=128 (29ms) + ✓ LayoutSQL;n=256 (27ms) + ✓ LayoutSQL;n=512 (54ms) + ✓ LayoutSQL;n=1024 (200ms) + ✓ LayoutSQL;n=2048 (1265ms) + ✓ LayoutSQL;n=4096 (6746ms) + ✓ LayoutSQL;n=8192 (3397ms) + ✓ LayoutSQL;n=16384 (10100ms) + ✓ LayoutSQL;n=32768 (47617ms) + ✓ LayoutSQL;n=65536 (230386ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..8e9993ba5173d930da08bb8a267a697268149aa5 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run7.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (34ms) + ✓ LayoutView;n=32 (13ms) + ✓ LayoutView;n=64 (22ms) + ✓ LayoutView;n=128 (45ms) + ✓ LayoutView;n=256 (149ms) + ✓ LayoutView;n=512 (457ms) + ✓ LayoutView;n=1024 (891ms) + ✓ LayoutView;n=2048 (1762ms) + ✓ LayoutView;n=4096 (1078ms) + ✓ LayoutView;n=8192 (3843ms) + ✓ LayoutView;n=16384 (14772ms) + ✓ LayoutView;n=32768 (64922ms) + ✓ LayoutView;n=65536 (257643ms) + ✓ LayoutSQL;n=16 (24ms) + ✓ LayoutSQL;n=32 (13ms) + ✓ LayoutSQL;n=64 (24ms) + ✓ LayoutSQL;n=128 (70ms) + ✓ LayoutSQL;n=256 (95ms) + ✓ LayoutSQL;n=512 (188ms) + ✓ LayoutSQL;n=1024 (560ms) + ✓ LayoutSQL;n=2048 (1995ms) + ✓ LayoutSQL;n=4096 (9086ms) + ✓ LayoutSQL;n=8192 (4611ms) + ✓ LayoutSQL;n=16384 (13358ms) + ✓ LayoutSQL;n=32768 (68604ms) + ✓ LayoutSQL;n=65536 (179267ms) + + + 26 passing (10m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..aa5651970712db57aff3c0c80efcb09b98de7a01 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run8.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (48ms) + ✓ LayoutView;n=32 (14ms) + ✓ LayoutView;n=64 (32ms) + ✓ LayoutView;n=128 (63ms) + ✓ LayoutView;n=256 (135ms) + ✓ LayoutView;n=512 (345ms) + ✓ LayoutView;n=1024 (1182ms) + ✓ LayoutView;n=2048 (1312ms) + ✓ LayoutView;n=4096 (840ms) + ✓ LayoutView;n=8192 (2529ms) + ✓ LayoutView;n=16384 (11179ms) + ✓ LayoutView;n=32768 (47970ms) + ✓ LayoutView;n=65536 (173957ms) + ✓ LayoutSQL;n=16 (16ms) + ✓ LayoutSQL;n=32 (8ms) + ✓ LayoutSQL;n=64 (17ms) + ✓ LayoutSQL;n=128 (35ms) + ✓ LayoutSQL;n=256 (50ms) + ✓ LayoutSQL;n=512 (119ms) + ✓ LayoutSQL;n=1024 (495ms) + ✓ LayoutSQL;n=2048 (1079ms) + ✓ LayoutSQL;n=4096 (6183ms) + ✓ LayoutSQL;n=8192 (3486ms) + ✓ LayoutSQL;n=16384 (11271ms) + ✓ LayoutSQL;n=32768 (53012ms) + ✓ LayoutSQL;n=65536 (218816ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-03/linear4/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..6a203d43894d8858e13ac952c838aea65a86d0d8 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear4/run9.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (31ms) + ✓ LayoutView;n=32 (12ms) + ✓ LayoutView;n=64 (20ms) + ✓ LayoutView;n=128 (39ms) + ✓ LayoutView;n=256 (89ms) + ✓ LayoutView;n=512 (377ms) + ✓ LayoutView;n=1024 (909ms) + ✓ LayoutView;n=2048 (2046ms) + ✓ LayoutView;n=4096 (982ms) + ✓ LayoutView;n=8192 (3266ms) + ✓ LayoutView;n=16384 (12480ms) + ✓ LayoutView;n=32768 (48231ms) + ✓ LayoutView;n=65536 (198337ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (14ms) + ✓ LayoutSQL;n=64 (11ms) + ✓ LayoutSQL;n=128 (45ms) + ✓ LayoutSQL;n=256 (87ms) + ✓ LayoutSQL;n=512 (154ms) + ✓ LayoutSQL;n=1024 (226ms) + ✓ LayoutSQL;n=2048 (983ms) + ✓ LayoutSQL;n=4096 (7313ms) + ✓ LayoutSQL;n=8192 (4039ms) + ✓ LayoutSQL;n=16384 (12902ms) + ✓ LayoutSQL;n=32768 (47664ms) + ✓ LayoutSQL;n=65536 (180416ms) + + + 26 passing (9m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/1024-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/128-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/16384-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/2048-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/256-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/32768-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/4096-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/512-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/64-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/65536-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/8192-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run1.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..d901713a7b1b90883b8510cd2b644107b6cd6834 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run1.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 157407 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 11963.8 / 0.0 ms [allocation failure] [GC in old space requested]. + 170111 ms: Mark-sweep 1318.8 (1434.7) -> 1318.8 (1434.7) MB, 12704.2 / 0.0 ms [allocation failure] [GC in old space requested]. + 179124 ms: Mark-sweep 1318.8 (1434.7) -> 1325.6 (1413.7) MB, 9011.5 / 0.0 ms [last resort gc]. + 188209 ms: Mark-sweep 1325.6 (1413.7) -> 1332.6 (1413.7) MB, 9084.7 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x35cad7fcf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x15eff0cc4887] (this=0x21a0e5cd01d1 ,idV=0x93ce585abe1 ,idU=0x93ce5873229 ,value=0x2470eb2dc4e9 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x15eff0caca75] (this=0x21a0e5cd01d1 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 141971 ms: Mark-sweep 1327.9 (1434.7) -> 1319.5 (1434.7) MB, 13292.7 / 0.0 ms [allocation failure] [GC in old space requested]. + 155672 ms: Mark-sweep 1319.5 (1434.7) -> 1319.4 (1434.7) MB, 13700.8 / 0.0 ms [allocation failure] [GC in old space requested]. + 169028 ms: Mark-sweep 1319.4 (1434.7) -> 1326.1 (1416.7) MB, 13354.6 / 0.0 ms [last resort gc]. + 177412 ms: Mark-sweep 1326.1 (1416.7) -> 1332.9 (1416.7) MB, 8383.3 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x380a966cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c345f7bb538] (this=0x1baa779dc7d9 ,idV=0x1b2b5ba93ae1 ,idU=0x1b2b5ba459c9 ,value=0x71cc68ea239 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c345f7a3435] (this=0x1baa779dc7d9 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 141434 ms: Mark-sweep 1323.3 (1434.7) -> 1319.1 (1434.7) MB, 7728.7 / 0.0 ms [allocation failure] [GC in old space requested]. + 148403 ms: Mark-sweep 1319.1 (1434.7) -> 1319.1 (1434.7) MB, 6969.5 / 0.0 ms [allocation failure] [GC in old space requested]. + 155727 ms: Mark-sweep 1319.1 (1434.7) -> 1326.3 (1413.7) MB, 7318.8 / 0.0 ms [last resort gc]. + 162985 ms: Mark-sweep 1326.3 (1413.7) -> 1333.7 (1413.7) MB, 7258.4 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x21765b9cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2f8e47eb0d27] (this=0x3c14d7769591 ,idV=0x3fe81d195109 ,idU=0xdc9fdb56059 ,value=0x363c577f26a1 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2f8e47e98f15] (this=0x3c14d7769591 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 140879 ms: Mark-sweep 1324.0 (1437.7) -> 1322.2 (1437.7) MB, 10380.2 / 0.0 ms [allocation failure] [GC in old space requested]. + 151731 ms: Mark-sweep 1322.2 (1437.7) -> 1322.2 (1437.7) MB, 10852.3 / 0.0 ms [allocation failure] [GC in old space requested]. + 163842 ms: Mark-sweep 1322.2 (1437.7) -> 1327.0 (1414.7) MB, 12104.9 / 0.0 ms [last resort gc]. + 176557 ms: Mark-sweep 1327.0 (1414.7) -> 1332.0 (1414.7) MB, 12710.5 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x398246cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x8286ebb5078] (this=0x2291807e1d19 ,idV=0x1e96f5c57431 ,idU=0x1e96f5c67989 ,value=0x113eb64f7b59 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x8286eb9b5b5] (this=0x2291807e1d19 ,v... + +FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory + 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 7: 0x8286e2079a7 +Aborted +npm ERR! Test failed. See above for more details. diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run13.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..1706a5dfaee3321bedbc951776fe6501bf1b0a01 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run13.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 157735 ms: Mark-sweep 1320.3 (1434.7) -> 1320.2 (1434.7) MB, 11047.4 / 0.0 ms [allocation failure] [GC in old space requested]. + 166833 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 9097.2 / 0.0 ms [allocation failure] [GC in old space requested]. + 176522 ms: Mark-sweep 1320.2 (1434.7) -> 1326.1 (1415.7) MB, 9688.7 / 0.0 ms [last resort gc]. + 184540 ms: Mark-sweep 1326.1 (1415.7) -> 1332.0 (1415.7) MB, 8017.3 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x39b9432cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1f3b0f6b2147] (this=0x316f56ee63a9 ,idV=0x2d2951264059 ,idU=0x2d2951297ba1 ,value=0x31cf456f67a9 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1f3b0f69a335] (this=0x316f56ee63a9 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 159790 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 11089.7 / 0.0 ms [allocation failure] [GC in old space requested]. + 169183 ms: Mark-sweep 1318.8 (1434.7) -> 1318.8 (1434.7) MB, 9392.4 / 0.0 ms [allocation failure] [GC in old space requested]. + 179719 ms: Mark-sweep 1318.8 (1434.7) -> 1325.4 (1413.7) MB, 10534.7 / 0.0 ms [last resort gc]. + 188220 ms: Mark-sweep 1325.4 (1413.7) -> 1332.0 (1413.7) MB, 8500.7 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x31cdbb9cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c8a008916c7] (this=0x33503b3dee59 ,idV=0x7bb1f940ba9 ,idU=0x7bb1f951e61 ,value=0xb663a4eb149 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x2c8a008798b5] (this=0x33503b3dee59 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 127788 ms: Mark-sweep 1328.2 (1434.7) -> 1319.6 (1434.7) MB, 6000.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 137916 ms: Mark-sweep 1319.6 (1434.7) -> 1319.6 (1434.7) MB, 10127.6 / 0.0 ms [allocation failure] [GC in old space requested]. + 153450 ms: Mark-sweep 1319.6 (1434.7) -> 1326.4 (1416.7) MB, 15533.8 / 0.0 ms [last resort gc]. + 164492 ms: Mark-sweep 1326.4 (1416.7) -> 1333.2 (1416.7) MB, 11040.6 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x3b3fcd4cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x397a0f4aab07] (this=0x3e83f27dcd19 ,idV=0x3a44511608b9 ,idU=0x3a4451148211 ,value=0x336c5eceb1d9 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x397a0f48fef5] (this=0x3e83f27dcd19 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 157047 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 15135.5 / 0.0 ms [allocation failure] [GC in old space requested]. + 168296 ms: Mark-sweep 1320.2 (1434.7) -> 1320.2 (1434.7) MB, 11248.7 / 0.0 ms [allocation failure] [GC in old space requested]. + 177229 ms: Mark-sweep 1320.2 (1434.7) -> 1326.2 (1415.7) MB, 8928.1 / 0.0 ms [last resort gc]. + 185923 ms: Mark-sweep 1326.2 (1415.7) -> 1332.3 (1415.7) MB, 8693.0 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x284cd56cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c5c03fa3281] (this=0x3358b5fcc4b9 ,idV=0x3e06d4579d51 ,idU=0x3e06d455b321 ,value=0x2fd07ebdc6a1 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3c5c03f72b95] (this=0x3358b5fcc4b9 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 141995 ms: Mark-sweep 1320.3 (1434.7) -> 1320.3 (1434.7) MB, 11431.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 153781 ms: Mark-sweep 1320.3 (1434.7) -> 1320.3 (1434.7) MB, 11785.6 / 0.0 ms [allocation failure] [GC in old space requested]. + 165829 ms: Mark-sweep 1320.3 (1434.7) -> 1326.6 (1415.7) MB, 12045.8 / 0.0 ms [last resort gc]. + 178912 ms: Mark-sweep 1326.6 (1415.7) -> 1333.0 (1415.7) MB, 13082.7 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x295a87ecf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3fb2508b0b47] (this=0x3d92881e63d1 ,idV=0x4e8be177d21 ,idU=0x4e8be1601f9 ,value=0xeb4702f67a9 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x3fb250899535] (this=0x3d92881e63d1 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 147413 ms: Mark-sweep 1324.5 (1434.7) -> 1321.2 (1434.7) MB, 7493.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 154904 ms: Mark-sweep 1321.2 (1434.7) -> 1321.2 (1434.7) MB, 7491.0 / 0.0 ms [allocation failure] [GC in old space requested]. + 160199 ms: Mark-sweep 1321.2 (1434.7) -> 1326.6 (1417.7) MB, 5294.3 / 0.0 ms [last resort gc]. + 166771 ms: Mark-sweep 1326.6 (1417.7) -> 1332.1 (1417.7) MB, 6571.5 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x35f6daccf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x382eb01b9d38] (this=0x1ba2b59d82f1 ,idV=0x5f994c55fb1 ,idU=0x5f994c5cb31 ,value=0x540dc7eb079 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x382eb01a0a75] (this=0x1ba2b59d82f1 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 159924 ms: Mark-sweep 1318.9 (1434.7) -> 1318.9 (1434.7) MB, 11258.8 / 0.0 ms [allocation failure] [GC in old space requested]. + 169465 ms: Mark-sweep 1318.9 (1434.7) -> 1318.8 (1434.7) MB, 9541.0 / 0.0 ms [allocation failure] [GC in old space requested]. + 179567 ms: Mark-sweep 1318.8 (1434.7) -> 1326.1 (1412.7) MB, 10096.7 / 0.0 ms [last resort gc]. + 187981 ms: Mark-sweep 1326.1 (1412.7) -> 1333.4 (1412.7) MB, 8412.9 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x8a604dcf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xf1056392647] (this=0x30f58dcdc9e9 ,idV=0x1b52901c8d61 ,idU=0x1b5290140471 ,value=0x3aab15168eb1 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xf105637a835] (this=0x30f58dcdc9e9 ,v... + +FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory + 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 7: 0xf1055a079a7 +Aborted +npm ERR! Test failed. See above for more details. diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run2.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..9bb5225a7a05e60059bb6eee10bcd57185704f4c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run2.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 146127 ms: Mark-sweep 1320.7 (1436.7) -> 1320.4 (1436.7) MB, 10577.7 / 0.0 ms [allocation failure] [GC in old space requested]. + 157061 ms: Mark-sweep 1320.4 (1436.7) -> 1320.4 (1436.7) MB, 10933.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 170439 ms: Mark-sweep 1320.4 (1436.7) -> 1325.0 (1412.7) MB, 13376.4 / 0.0 ms [last resort gc]. + 183545 ms: Mark-sweep 1325.0 (1412.7) -> 1329.8 (1411.7) MB, 13104.9 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x3726f3acf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe9b3629e8b8] (this=0x39ad83cbc09 ,idV=0x3d9275067069 ,idU=0x3d927508c519 ,value=0x1848fa1dca61 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe9b36286895] (this=0x39ad83cbc09 ... + +FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory + 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 7: 0xe9b359079a7 +Aborted +npm ERR! Test failed. See above for more details. diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run20.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..827516cfc51a4b96dee938e4cad137298c4041ee --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run20.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 160312 ms: Mark-sweep 1319.5 (1434.7) -> 1319.5 (1434.7) MB, 13399.1 / 0.0 ms [allocation failure] [GC in old space requested]. + 171956 ms: Mark-sweep 1319.5 (1434.7) -> 1319.5 (1434.7) MB, 11643.2 / 0.0 ms [allocation failure] [GC in old space requested]. + 184106 ms: Mark-sweep 1319.5 (1434.7) -> 1326.4 (1416.7) MB, 12149.1 / 0.0 ms [last resort gc]. + 192487 ms: Mark-sweep 1326.4 (1416.7) -> 1333.6 (1416.7) MB, 8380.4 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x2383cedcf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1cb2076b2c87] (this=0x2ca957a99659 ,idV=0x3e7fae62be81 ,idU=0x3e7fae643281 ,value=0x23c21fca7471 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x1cb2076993d5] (this=0x2ca957a99659 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 131536 ms: Mark-sweep 1327.8 (1434.7) -> 1319.4 (1434.7) MB, 7021.0 / 0.0 ms [allocation failure] [GC in old space requested]. + 138207 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 6671.4 / 0.0 ms [allocation failure] [GC in old space requested]. + 144858 ms: Mark-sweep 1319.4 (1434.7) -> 1325.7 (1416.7) MB, 6650.0 / 0.0 ms [last resort gc]. + 152174 ms: Mark-sweep 1325.7 (1416.7) -> 1332.0 (1416.7) MB, 7315.9 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x38514a1cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x17a5c36cee87] (this=0x23e7829e3ff1 ,idV=0x263787d5a159 ,idU=0x263787dafae1 ,value=0x1b59998f1739 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x17a5c36b7075] (this=0x23e7829e3ff1 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 131895 ms: Mark-sweep 1327.9 (1434.7) -> 1319.4 (1434.7) MB, 7812.5 / 0.0 ms [allocation failure] [GC in old space requested]. + 140392 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 8496.8 / 0.0 ms [allocation failure] [GC in old space requested]. + 151398 ms: Mark-sweep 1319.4 (1434.7) -> 1326.0 (1416.7) MB, 11000.7 / 0.0 ms [last resort gc]. + 163004 ms: Mark-sweep 1326.0 (1416.7) -> 1332.7 (1416.7) MB, 11604.7 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x302f49dcf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x68343db94c7] (this=0xa426e291fc9 ,idV=0x3986f38c6ee1 ,idU=0x6b5abb5e1a9 ,value=0x1c8763f9f949 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x68343da16b5] (this=0xa426e291fc9 ,vie... + +FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory + 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 7: 0x683434079a7 +Aborted +npm ERR! Test failed. See above for more details. diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run5.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..dcd82750e04b8dc9b352f1fbea339be4ead822e4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run5.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 166639 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 9952.6 / 0.0 ms [allocation failure] [GC in old space requested]. + 173159 ms: Mark-sweep 1319.4 (1434.7) -> 1319.3 (1434.7) MB, 6519.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 179395 ms: Mark-sweep 1319.3 (1434.7) -> 1325.9 (1416.7) MB, 6235.3 / 0.0 ms [last resort gc]. + 185844 ms: Mark-sweep 1325.9 (1416.7) -> 1332.5 (1416.7) MB, 6449.4 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x2281109cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x12674609f147] (this=0x3b0fd9cda881 ,idV=0xac6c0bb47d1 ,idU=0xac6c0b58b59 ,value=0x19adc43e8569 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x126746085895] (this=0x3b0fd9cda881 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 127720 ms: Mark-sweep 1320.2 (1434.7) -> 1320.1 (1434.7) MB, 6824.8 / 0.0 ms [allocation failure] [GC in old space requested]. + 134455 ms: Mark-sweep 1320.1 (1434.7) -> 1320.1 (1434.7) MB, 6734.6 / 0.0 ms [allocation failure] [GC in old space requested]. + 141181 ms: Mark-sweep 1320.1 (1434.7) -> 1325.9 (1415.7) MB, 6724.9 / 0.0 ms [last resort gc]. + 153315 ms: Mark-sweep 1325.9 (1415.7) -> 1331.9 (1415.7) MB, 12134.0 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x2ff1463cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x345ebbea97e7] (this=0xf68017cb691 ,idV=0x2a2d4d3a34a9 ,idU=0x2a2d4d3265b1 ,value=0x3792db381 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x345ebbe8e3d5] (this=0xf68017cb691 ,... + +FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory + 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 7: 0x345ebb5079a7 +Aborted +npm ERR! Test failed. See above for more details. diff --git a/experiments/develop_processed_var_graph/2018-10-03/linear8/run7.test b/experiments/develop_processed_var_graph/2018-10-03/linear8/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..cd4bf8f5618d12099442b30dc77d36c2351f4b66 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-03/linear8/run7.test @@ -0,0 +1,31 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 166374 ms: Mark-sweep 1323.9 (1437.7) -> 1322.2 (1437.7) MB, 12222.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 179993 ms: Mark-sweep 1322.2 (1437.7) -> 1322.2 (1437.7) MB, 13614.3 / 0.0 ms [allocation failure] [GC in old space requested]. + 189732 ms: Mark-sweep 1322.2 (1437.7) -> 1327.0 (1414.7) MB, 9738.2 / 0.0 ms [last resort gc]. + 197047 ms: Mark-sweep 1327.0 (1414.7) -> 1331.9 (1414.7) MB, 7314.1 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x29b3b19cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe5c157aae67] (this=0x158a3d6e0861 ,idV=0x1dfa4dd4f909 ,idU=0x1dfa4dd41af9 ,value=0x2c58b60f6641 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0xe5c1578f475] (this=0x158a3d6e0861 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 167602 ms: Mark-sweep 1319.4 (1434.7) -> 1319.4 (1434.7) MB, 10013.8 / 0.0 ms [allocation failure] [GC in old space requested]. + 176949 ms: Mark-sweep 1319.4 (1434.7) -> 1319.3 (1434.7) MB, 9346.6 / 0.0 ms [allocation failure] [GC in old space requested]. + 185027 ms: Mark-sweep 1319.3 (1434.7) -> 1325.9 (1416.7) MB, 8077.3 / 0.0 ms [last resort gc]. + 191762 ms: Mark-sweep 1325.9 (1416.7) -> 1332.6 (1416.7) MB, 6734.7 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0x3041cffcf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x93ff8ca7587] (this=0x21308cbd5b41 ,idV=0x1f253e16d4a9 ,idU=0x1f253e150951 ,value=0x4a41d6e37f9 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x93ff8c8f775] (this=0x21308cbd5b41 blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + +<--- Last few GCs ---> + + 154542 ms: Mark-sweep 1319.3 (1434.7) -> 1319.3 (1434.7) MB, 8148.5 / 0.0 ms [allocation failure] [GC in old space requested]. + 168803 ms: Mark-sweep 1319.3 (1434.7) -> 1319.3 (1434.7) MB, 14259.9 / 0.0 ms [allocation failure] [GC in old space requested]. + 179287 ms: Mark-sweep 1319.3 (1434.7) -> 1325.8 (1416.7) MB, 10483.0 / 0.0 ms [last resort gc]. + 188861 ms: Mark-sweep 1325.8 (1416.7) -> 1332.4 (1416.7) MB, 9573.8 / 0.0 ms [last resort gc]. + + +<--- JS stacktrace ---> + +==== JS stack trace ========================================= + +Security context: 0xcfd186cf781 + 1: edge [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x11d8e81b2247] (this=0xd5ea59e2cb1 ,idV=0x232286f660c9 ,idU=0x232286facc11 ,value=0xc009c0f02a9 ) + 2: addView [/home/blendb/blendb/src/util/graph.ts:~1] [pc=0x11d8e819a435] (this=0xd5ea59e2cb1 ... + +FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory + 1: node::Abort() [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 2: 0x7d007c [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 3: v8::Utils::ReportApiFailure(char const*, char const*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 4: v8::internal::V8::FatalProcessOutOfMemory(char const*, bool) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 5: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 6: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*) [/home/blendb/.nvm/versions/node/v6.14.4/bin/node] + 7: 0x11d8e78079a7 +Aborted +npm ERR! Test failed. See above for more details. diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..d3605b560a81fbd44119cea107a3182a2191c9de --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 341.4 +Mediana = 336 +Variancia = 560.04 +Desvio Padrao = 23.67 +Coef. Variacao = 0.07 +Min = 312 +Max = 389 +Esq, Dir. = 332.6959 , 350.1041 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..4118a008f1fbf94668b4af0ba781383878e54141 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutSQL.res @@ -0,0 +1,20 @@ +1024 321 +1024 378 +1024 389 +1024 325 +1024 356 +1024 359 +1024 335 +1024 337 +1024 365 +1024 324 +1024 328 +1024 342 +1024 315 +1024 312 +1024 326 +1024 324 +1024 323 +1024 343 +1024 389 +1024 337 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..bbbe1c320ecf53872af1ae59132d9b28e95a7ea6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.R @@ -0,0 +1,8 @@ +Media = 240.9 +Mediana = 239 +Variancia = 71.88 +Desvio Padrao = 8.48 +Coef. Variacao = 0.04 +Min = 232 +Max = 269 +Esq, Dir. = 237.7816 , 244.0184 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..d6a36f637a6572a04d84fcda2a00281b4da5ad1c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/1024-LayoutView.res @@ -0,0 +1,20 @@ +1024 237 +1024 237 +1024 244 +1024 232 +1024 241 +1024 245 +1024 269 +1024 245 +1024 233 +1024 234 +1024 237 +1024 234 +1024 246 +1024 244 +1024 238 +1024 252 +1024 241 +1024 234 +1024 235 +1024 240 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..353d235118dcfe7747ee96993dcae3bde5ff435a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 23.3 +Mediana = 23 +Variancia = 5.69 +Desvio Padrao = 2.39 +Coef. Variacao = 0.1 +Min = 20 +Max = 32 +Esq, Dir. = 22.4223 , 24.1777 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..856bc8096c399baaa602b1d8f4f66d982c840916 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutSQL.res @@ -0,0 +1,20 @@ +128 22 +128 24 +128 22 +128 20 +128 24 +128 26 +128 23 +128 23 +128 22 +128 22 +128 23 +128 23 +128 23 +128 23 +128 24 +128 22 +128 22 +128 32 +128 24 +128 22 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..08719830edfc9d0341cf588b650ee16ae0c3cdd3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.R @@ -0,0 +1,8 @@ +Media = 15.85 +Mediana = 15 +Variancia = 6.77 +Desvio Padrao = 2.6 +Coef. Variacao = 0.16 +Min = 12 +Max = 20 +Esq, Dir. = 14.8933 , 16.8067 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..c4b7bffb3e3afa16a308cb18f51eacd4439354a0 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/128-LayoutView.res @@ -0,0 +1,20 @@ +128 15 +128 20 +128 14 +128 13 +128 19 +128 15 +128 18 +128 17 +128 17 +128 13 +128 20 +128 15 +128 14 +128 14 +128 12 +128 18 +128 13 +128 16 +128 14 +128 20 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..29ec4ac503c64246b4d77c8e5e417613157664e3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 11.1 +Mediana = 11 +Variancia = 0.52 +Desvio Padrao = 0.72 +Coef. Variacao = 0.06 +Min = 10 +Max = 13 +Esq, Dir. = 10.8359 , 11.3641 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..6d51cb8024c8a8bd27b2114e91caf0b599c6d7ed --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutSQL.res @@ -0,0 +1,20 @@ +16 11 +16 10 +16 11 +16 11 +16 11 +16 12 +16 11 +16 13 +16 11 +16 10 +16 12 +16 12 +16 10 +16 11 +16 11 +16 11 +16 11 +16 11 +16 11 +16 11 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..b01c0d35ae8b97e3f4c6f1d64b1cf78df9c04380 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.R @@ -0,0 +1,8 @@ +Media = 15.6 +Mediana = 15 +Variancia = 1.09 +Desvio Padrao = 1.05 +Coef. Variacao = 0.07 +Min = 14 +Max = 19 +Esq, Dir. = 15.2152 , 15.9848 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..f2d776fd22b63dd7018eeb08bada1cc227eb4ab1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16-LayoutView.res @@ -0,0 +1,20 @@ +16 16 +16 15 +16 19 +16 15 +16 16 +16 15 +16 15 +16 16 +16 16 +16 16 +16 15 +16 15 +16 17 +16 15 +16 15 +16 16 +16 15 +16 14 +16 15 +16 16 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..26f857027c9353a313fd663f6c3c93beadb1ed9f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 80046.95 +Mediana = 79770.5 +Variancia = 29692740.26 +Desvio Padrao = 5449.1 +Coef. Variacao = 0.07 +Min = 70802 +Max = 92936 +Esq, Dir. = 78042.7669 , 82051.1331 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e7d8a7eba23a070a71b02fb29f5a9bfa016ef825 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutSQL.res @@ -0,0 +1,20 @@ +16384 80024 +16384 85416 +16384 92936 +16384 79495 +16384 81905 +16384 78527 +16384 73043 +16384 79755 +16384 85103 +16384 76324 +16384 79786 +16384 78163 +16384 70802 +16384 76744 +16384 73091 +16384 84119 +16384 82630 +16384 81725 +16384 87723 +16384 73628 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..8cb11660e98201025ebd488e90a73cf6268fbb1f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.R @@ -0,0 +1,8 @@ +Media = 57058.3 +Mediana = 56278.5 +Variancia = 9754660.33 +Desvio Padrao = 3123.25 +Coef. Variacao = 0.05 +Min = 52253 +Max = 64599 +Esq, Dir. = 55909.569 , 58207.031 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..c3a32bd7a3afaac72e31c5aa8e68cbde204d68ac --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/16384-LayoutView.res @@ -0,0 +1,20 @@ +16384 55422 +16384 56118 +16384 57180 +16384 53169 +16384 53869 +16384 60992 +16384 64599 +16384 58503 +16384 52253 +16384 55138 +16384 56178 +16384 54118 +16384 57550 +16384 58388 +16384 56140 +16384 59217 +16384 57607 +16384 62956 +16384 56379 +16384 55390 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..2298931758438a2f07c91ee30cae18dd82ed0f06 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 1240.4 +Mediana = 1227 +Variancia = 9253.09 +Desvio Padrao = 96.19 +Coef. Variacao = 0.08 +Min = 1099 +Max = 1463 +Esq, Dir. = 1205.0202 , 1275.7798 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..4455f057000fd8db984fc21755b614ce1db6e153 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutSQL.res @@ -0,0 +1,20 @@ +2048 1147 +2048 1356 +2048 1372 +2048 1179 +2048 1269 +2048 1252 +2048 1185 +2048 1151 +2048 1327 +2048 1191 +2048 1314 +2048 1323 +2048 1133 +2048 1099 +2048 1153 +2048 1284 +2048 1156 +2048 1240 +2048 1463 +2048 1214 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..0410b18f21ea8fb3ccbe918021b85cb8dd495794 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.R @@ -0,0 +1,8 @@ +Media = 926 +Mediana = 926 +Variancia = 663.58 +Desvio Padrao = 25.76 +Coef. Variacao = 0.03 +Min = 857 +Max = 984 +Esq, Dir. = 916.5255 , 935.4745 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..4214a2b404ccc95481d73b6dd51b9716cae70bc9 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/2048-LayoutView.res @@ -0,0 +1,20 @@ +2048 932 +2048 927 +2048 946 +2048 909 +2048 941 +2048 946 +2048 857 +2048 950 +2048 902 +2048 916 +2048 914 +2048 907 +2048 945 +2048 937 +2048 916 +2048 984 +2048 944 +2048 908 +2048 914 +2048 925 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b52fe393a544de2fff7a4722ff2063c651a5ef60 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 37 +Mediana = 34 +Variancia = 141.16 +Desvio Padrao = 11.88 +Coef. Variacao = 0.32 +Min = 32 +Max = 87 +Esq, Dir. = 32.6302 , 41.3698 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..51a3dcdb4fd3cb46b5ffb7513ad28a9bdb19b7de --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutSQL.res @@ -0,0 +1,20 @@ +256 33 +256 36 +256 36 +256 33 +256 87 +256 36 +256 33 +256 33 +256 35 +256 34 +256 33 +256 36 +256 34 +256 33 +256 34 +256 34 +256 32 +256 35 +256 39 +256 34 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..c8a49eab0963521529ace8c1b6e8e96a454ccbe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.R @@ -0,0 +1,8 @@ +Media = 40.15 +Mediana = 42.5 +Variancia = 103.92 +Desvio Padrao = 10.19 +Coef. Variacao = 0.25 +Min = 24 +Max = 55 +Esq, Dir. = 36.4005 , 43.8995 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..d3b6f3de51234676eb8afd63acff346bd513fc3c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/256-LayoutView.res @@ -0,0 +1,20 @@ +256 45 +256 24 +256 27 +256 42 +256 42 +256 28 +256 24 +256 55 +256 51 +256 46 +256 53 +256 42 +256 47 +256 45 +256 43 +256 28 +256 45 +256 49 +256 25 +256 42 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..d7a5d722c48717bbbe68d8a61fe5338df3c96bd3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 6 +Mediana = 6 +Variancia = 2.63 +Desvio Padrao = 1.62 +Coef. Variacao = 0.27 +Min = 4 +Max = 12 +Esq, Dir. = 5.4033 , 6.5967 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..45a65f4e00f2d9424a019be1c250a9ef1955215f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutSQL.res @@ -0,0 +1,20 @@ +32 6 +32 12 +32 5 +32 6 +32 6 +32 7 +32 6 +32 7 +32 4 +32 6 +32 6 +32 6 +32 7 +32 5 +32 5 +32 5 +32 5 +32 5 +32 6 +32 5 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..c0bd1ee41940c6f6c664a8a983e0274cbcfcceda --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.R @@ -0,0 +1,8 @@ +Media = 4.85 +Mediana = 4 +Variancia = 2.98 +Desvio Padrao = 1.73 +Coef. Variacao = 0.36 +Min = 3 +Max = 9 +Esq, Dir. = 4.2155 , 5.4845 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..cbca5c259431494dcbedc500d7522f66c22d64b0 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32-LayoutView.res @@ -0,0 +1,20 @@ +32 4 +32 5 +32 4 +32 4 +32 4 +32 9 +32 4 +32 9 +32 5 +32 4 +32 4 +32 3 +32 5 +32 4 +32 4 +32 4 +32 4 +32 4 +32 8 +32 5 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..e8d5457c09cbf3146dc1361b9c66464a207c2f05 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 322609.75 +Mediana = 318548.5 +Variancia = 597917361.14 +Desvio Padrao = 24452.35 +Coef. Variacao = 0.08 +Min = 287752 +Max = 379872 +Esq, Dir. = 313616.1651 , 331603.3349 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..da0ee368dd46adf48b45878058903e056935ddfa --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutSQL.res @@ -0,0 +1,20 @@ +32768 310163 +32768 332041 +32768 361270 +32768 332875 +32768 309171 +32768 316930 +32768 294160 +32768 320167 +32768 344493 +32768 314931 +32768 340305 +32768 350194 +32768 291707 +32768 313058 +32768 290954 +32768 326769 +32768 306105 +32768 329278 +32768 379872 +32768 287752 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..a5b7790860205a0f212e37a4684f5f73ccd145e9 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.R @@ -0,0 +1,8 @@ +Media = 233032.25 +Mediana = 232192 +Variancia = 248885351.25 +Desvio Padrao = 15776.1 +Coef. Variacao = 0.07 +Min = 211668 +Max = 263785 +Esq, Dir. = 227229.7931 , 238834.7069 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..c19a7e12fead79865490e92d3ddb0f448d3c53c2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/32768-LayoutView.res @@ -0,0 +1,20 @@ +32768 217561 +32768 238405 +32768 234954 +32768 223181 +32768 222038 +32768 218526 +32768 234823 +32768 225619 +32768 240058 +32768 211949 +32768 240171 +32768 212548 +32768 211668 +32768 249771 +32768 263785 +32768 250040 +32768 247556 +32768 227464 +32768 260967 +32768 229561 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..986835cae2bf320aaded6347894f50167b70afc3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 4733.4 +Mediana = 4779.5 +Variancia = 71399.31 +Desvio Padrao = 267.21 +Coef. Variacao = 0.06 +Min = 4217 +Max = 5236 +Esq, Dir. = 4635.1213 , 4831.6787 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..08962fbead0179273ee15719f28aa5db6cf07f18 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutSQL.res @@ -0,0 +1,20 @@ +4096 4841 +4096 5236 +4096 4928 +4096 4550 +4096 4892 +4096 4786 +4096 4481 +4096 4773 +4096 4992 +4096 4511 +4096 4594 +4096 4724 +4096 4353 +4096 4217 +4096 4563 +4096 4880 +4096 4479 +4096 4799 +4096 5234 +4096 4835 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..ef17c890d43f035dd67c200d2951d607470ac56e --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.R @@ -0,0 +1,8 @@ +Media = 3277.15 +Mediana = 3268 +Variancia = 7152.45 +Desvio Padrao = 84.57 +Coef. Variacao = 0.03 +Min = 3150 +Max = 3432 +Esq, Dir. = 3246.0443 , 3308.2557 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..e1f0fb3957c9b791fb6789cb456be92d075d56f7 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/4096-LayoutView.res @@ -0,0 +1,20 @@ +4096 3263 +4096 3246 +4096 3284 +4096 3165 +4096 3311 +4096 3359 +4096 3431 +4096 3377 +4096 3150 +4096 3176 +4096 3212 +4096 3203 +4096 3273 +4096 3284 +4096 3237 +4096 3432 +4096 3286 +4096 3395 +4096 3217 +4096 3242 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..75f3ced2e92b81d2ac19611be78ece9ec87ae2dd --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 103 +Mediana = 100 +Variancia = 114.95 +Desvio Padrao = 10.72 +Coef. Variacao = 0.1 +Min = 94 +Max = 143 +Esq, Dir. = 99.0567 , 106.9433 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..e5b8e5850f36e4d000d17400c6ec17e2a553f1a1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutSQL.res @@ -0,0 +1,20 @@ +512 94 +512 111 +512 111 +512 97 +512 109 +512 104 +512 101 +512 96 +512 105 +512 102 +512 99 +512 103 +512 96 +512 95 +512 98 +512 99 +512 96 +512 103 +512 143 +512 98 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..772e2672349a5167f65b62192aee7fccd9ee8274 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.R @@ -0,0 +1,8 @@ +Media = 82.5 +Mediana = 79.5 +Variancia = 62.16 +Desvio Padrao = 7.88 +Coef. Variacao = 0.1 +Min = 74 +Max = 98 +Esq, Dir. = 79.6003 , 85.3997 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..a0e0782cd235488bb635f2a6e03cc6f6ba5de418 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/512-LayoutView.res @@ -0,0 +1,20 @@ +512 76 +512 95 +512 86 +512 74 +512 81 +512 98 +512 92 +512 84 +512 78 +512 77 +512 77 +512 74 +512 79 +512 77 +512 75 +512 91 +512 81 +512 78 +512 97 +512 80 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..076fa515bd97f7c1d6b61768a0b130cb5ed5d392 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 7.45 +Mediana = 7 +Variancia = 0.47 +Desvio Padrao = 0.69 +Coef. Variacao = 0.09 +Min = 7 +Max = 9 +Esq, Dir. = 7.1976 , 7.7024 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..28821ac4402cdd76034b1e4efa27ac85300bde1c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutSQL.res @@ -0,0 +1,20 @@ +64 7 +64 9 +64 7 +64 7 +64 8 +64 9 +64 7 +64 7 +64 7 +64 7 +64 8 +64 8 +64 7 +64 7 +64 8 +64 7 +64 7 +64 7 +64 8 +64 7 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..f9fefd376e6ba4a68272bbe8b23fed4db8804827 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.R @@ -0,0 +1,8 @@ +Media = 8.4 +Mediana = 7 +Variancia = 41.2 +Desvio Padrao = 6.42 +Coef. Variacao = 0.76 +Min = 5 +Max = 35 +Esq, Dir. = 6.0392 , 10.7608 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..7ac6ffc65a7fd6170f5439184b89eea18aa9f860 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/64-LayoutView.res @@ -0,0 +1,20 @@ +64 6 +64 6 +64 35 +64 5 +64 6 +64 9 +64 7 +64 9 +64 7 +64 6 +64 10 +64 6 +64 6 +64 6 +64 7 +64 7 +64 6 +64 7 +64 10 +64 7 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..6194f1a88a5a7a4a0050c9748717d8f103885bef --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 1316785.3 +Mediana = 1300102 +Variancia = 2168666526.85 +Desvio Padrao = 46568.94 +Coef. Variacao = 0.04 +Min = 1255639 +Max = 1419162 +Esq, Dir. = 1299657.2214 , 1333913.3786 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..6a34611e21d700e4d65618cd9ecb886c28df3889 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutSQL.res @@ -0,0 +1,20 @@ +65536 1316729 +65536 1294522 +65536 1286800 +65536 1388401 +65536 1401408 +65536 1280018 +65536 1266269 +65536 1322843 +65536 1296845 +65536 1385728 +65536 1300751 +65536 1419162 +65536 1299453 +65536 1287508 +65536 1268646 +65536 1320349 +65536 1320387 +65536 1326405 +65536 1297843 +65536 1255639 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..5dac5d929cb10c432715165ce70ee112a63e5f0b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.R @@ -0,0 +1,8 @@ +Media = 1120980.55 +Mediana = 1117490.5 +Variancia = 1662872886.68 +Desvio Padrao = 40778.34 +Coef. Variacao = 0.04 +Min = 1043034 +Max = 1200087 +Esq, Dir. = 1105982.2587 , 1135978.8413 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..5b965885fb6296cf204e0c36e152535116097769 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/65536-LayoutView.res @@ -0,0 +1,20 @@ +65536 1108452 +65536 1200087 +65536 1122195 +65536 1136350 +65536 1153645 +65536 1164577 +65536 1179356 +65536 1043034 +65536 1105205 +65536 1168094 +65536 1079396 +65536 1056555 +65536 1105380 +65536 1140448 +65536 1107475 +65536 1129366 +65536 1110413 +65536 1112786 +65536 1130561 +65536 1066236 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..ce53baecc28f6eb99978f902df8d145ee1b4c021 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 18878.2 +Mediana = 18675.5 +Variancia = 1804943.33 +Desvio Padrao = 1343.48 +Coef. Variacao = 0.07 +Min = 16701 +Max = 21551 +Esq, Dir. = 18384.0668 , 19372.3332 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..77de87d4541a83270521191ce706abbc43291dda --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutSQL.res @@ -0,0 +1,20 @@ +8192 18653 +8192 21551 +8192 20829 +8192 18201 +8192 19766 +8192 19026 +8192 17602 +8192 17841 +8192 20094 +8192 18696 +8192 17495 +8192 18655 +8192 17252 +8192 16701 +8192 18079 +8192 20101 +8192 19034 +8192 17669 +8192 21042 +8192 19277 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..ccf88e55b9e6540ba1d03d66b0e3badaf3990a64 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.R @@ -0,0 +1,8 @@ +Media = 13196.1 +Mediana = 13074 +Variancia = 201658.62 +Desvio Padrao = 449.06 +Coef. Variacao = 0.03 +Min = 12590 +Max = 14267 +Esq, Dir. = 13030.934 , 13361.266 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..5747b520bf47c6991424fa72c74481953d135fe6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/8192-LayoutView.res @@ -0,0 +1,20 @@ +8192 13082 +8192 12853 +8192 13298 +8192 12819 +8192 13335 +8192 13620 +8192 14267 +8192 13475 +8192 12670 +8192 12804 +8192 12899 +8192 12590 +8192 12870 +8192 13528 +8192 13153 +8192 13861 +8192 12968 +8192 13851 +8192 12913 +8192 13066 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run1.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..3a7ccce21af0de26bd0e6858d2f4a4eaf4360ed2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run1.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (10ms) + ✓ LayoutView;n=128 (20ms) + ✓ LayoutView;n=256 (53ms) + ✓ LayoutView;n=512 (77ms) + ✓ LayoutView;n=1024 (237ms) + ✓ LayoutView;n=2048 (914ms) + ✓ LayoutView;n=4096 (3212ms) + ✓ LayoutView;n=8192 (12899ms) + ✓ LayoutView;n=16384 (56178ms) + ✓ LayoutView;n=32768 (240171ms) + ✓ LayoutView;n=65536 (1079396ms) + ✓ LayoutSQL;n=16 (12ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (8ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (33ms) + ✓ LayoutSQL;n=512 (99ms) + ✓ LayoutSQL;n=1024 (328ms) + ✓ LayoutSQL;n=2048 (1314ms) + ✓ LayoutSQL;n=4096 (4594ms) + ✓ LayoutSQL;n=8192 (17495ms) + ✓ LayoutSQL;n=16384 (79786ms) + ✓ LayoutSQL;n=32768 (340305ms) + ✓ LayoutSQL;n=65536 (1300751ms) + + + 26 passing (52m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run10.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..9ea57ee098cc23259e1970f9b88e9d5ac991ea51 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run10.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (13ms) + ✓ LayoutView;n=256 (46ms) + ✓ LayoutView;n=512 (77ms) + ✓ LayoutView;n=1024 (234ms) + ✓ LayoutView;n=2048 (916ms) + ✓ LayoutView;n=4096 (3176ms) + ✓ LayoutView;n=8192 (12804ms) + ✓ LayoutView;n=16384 (55138ms) + ✓ LayoutView;n=32768 (211949ms) + ✓ LayoutView;n=65536 (1168094ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (34ms) + ✓ LayoutSQL;n=512 (102ms) + ✓ LayoutSQL;n=1024 (324ms) + ✓ LayoutSQL;n=2048 (1191ms) + ✓ LayoutSQL;n=4096 (4511ms) + ✓ LayoutSQL;n=8192 (18696ms) + ✓ LayoutSQL;n=16384 (76324ms) + ✓ LayoutSQL;n=32768 (314931ms) + ✓ LayoutSQL;n=65536 (1385728ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run11.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..de6d9f9e62934b349365cb3154fa978c55e52d07 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run11.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (5ms) + ✓ LayoutView;n=64 (7ms) + ✓ LayoutView;n=128 (20ms) + ✓ LayoutView;n=256 (42ms) + ✓ LayoutView;n=512 (80ms) + ✓ LayoutView;n=1024 (240ms) + ✓ LayoutView;n=2048 (925ms) + ✓ LayoutView;n=4096 (3242ms) + ✓ LayoutView;n=8192 (13066ms) + ✓ LayoutView;n=16384 (55390ms) + ✓ LayoutView;n=32768 (229561ms) + ✓ LayoutView;n=65536 (1066236ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (34ms) + ✓ LayoutSQL;n=512 (98ms) + ✓ LayoutSQL;n=1024 (337ms) + ✓ LayoutSQL;n=2048 (1214ms) + ✓ LayoutSQL;n=4096 (4835ms) + ✓ LayoutSQL;n=8192 (19277ms) + ✓ LayoutSQL;n=16384 (73628ms) + ✓ LayoutSQL;n=32768 (287752ms) + ✓ LayoutSQL;n=65536 (1255639ms) + + + 26 passing (50m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run12.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..a93fcfd0ac6b29bc4c0b8824f7a369ca964d1d6e --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run12.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (9ms) + ✓ LayoutView;n=128 (17ms) + ✓ LayoutView;n=256 (55ms) + ✓ LayoutView;n=512 (84ms) + ✓ LayoutView;n=1024 (245ms) + ✓ LayoutView;n=2048 (950ms) + ✓ LayoutView;n=4096 (3377ms) + ✓ LayoutView;n=8192 (13475ms) + ✓ LayoutView;n=16384 (58503ms) + ✓ LayoutView;n=32768 (225619ms) + ✓ LayoutView;n=65536 (1043034ms) + ✓ LayoutSQL;n=16 (13ms) + ✓ LayoutSQL;n=32 (7ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (33ms) + ✓ LayoutSQL;n=512 (96ms) + ✓ LayoutSQL;n=1024 (337ms) + ✓ LayoutSQL;n=2048 (1151ms) + ✓ LayoutSQL;n=4096 (4773ms) + ✓ LayoutSQL;n=8192 (17841ms) + ✓ LayoutSQL;n=16384 (79755ms) + ✓ LayoutSQL;n=32768 (320167ms) + ✓ LayoutSQL;n=65536 (1322843ms) + + + 26 passing (52m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run13.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..6301c7f730b6db7745490dbe8b8d440314958c14 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run13.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (7ms) + ✓ LayoutView;n=128 (18ms) + ✓ LayoutView;n=256 (28ms) + ✓ LayoutView;n=512 (91ms) + ✓ LayoutView;n=1024 (252ms) + ✓ LayoutView;n=2048 (984ms) + ✓ LayoutView;n=4096 (3432ms) + ✓ LayoutView;n=8192 (13861ms) + ✓ LayoutView;n=16384 (59217ms) + ✓ LayoutView;n=32768 (250040ms) + ✓ LayoutView;n=65536 (1129366ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (34ms) + ✓ LayoutSQL;n=512 (99ms) + ✓ LayoutSQL;n=1024 (324ms) + ✓ LayoutSQL;n=2048 (1284ms) + ✓ LayoutSQL;n=4096 (4880ms) + ✓ LayoutSQL;n=8192 (20101ms) + ✓ LayoutSQL;n=16384 (84119ms) + ✓ LayoutSQL;n=32768 (326769ms) + ✓ LayoutSQL;n=65536 (1320349ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run14.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..2a4d22018b065bae361fa6452c0d293d5bcdd559 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run14.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (5ms) + ✓ LayoutView;n=128 (13ms) + ✓ LayoutView;n=256 (42ms) + ✓ LayoutView;n=512 (74ms) + ✓ LayoutView;n=1024 (232ms) + ✓ LayoutView;n=2048 (909ms) + ✓ LayoutView;n=4096 (3165ms) + ✓ LayoutView;n=8192 (12819ms) + ✓ LayoutView;n=16384 (53169ms) + ✓ LayoutView;n=32768 (223181ms) + ✓ LayoutView;n=65536 (1136350ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (20ms) + ✓ LayoutSQL;n=256 (33ms) + ✓ LayoutSQL;n=512 (97ms) + ✓ LayoutSQL;n=1024 (325ms) + ✓ LayoutSQL;n=2048 (1179ms) + ✓ LayoutSQL;n=4096 (4550ms) + ✓ LayoutSQL;n=8192 (18201ms) + ✓ LayoutSQL;n=16384 (79495ms) + ✓ LayoutSQL;n=32768 (332875ms) + ✓ LayoutSQL;n=65536 (1388401ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run15.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..5315dc6e73c8f6b4e5073da682771897c9a5c243 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run15.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (7ms) + ✓ LayoutView;n=128 (18ms) + ✓ LayoutView;n=256 (24ms) + ✓ LayoutView;n=512 (92ms) + ✓ LayoutView;n=1024 (269ms) + ✓ LayoutView;n=2048 (857ms) + ✓ LayoutView;n=4096 (3431ms) + ✓ LayoutView;n=8192 (14267ms) + ✓ LayoutView;n=16384 (64599ms) + ✓ LayoutView;n=32768 (234823ms) + ✓ LayoutView;n=65536 (1179356ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (33ms) + ✓ LayoutSQL;n=512 (101ms) + ✓ LayoutSQL;n=1024 (335ms) + ✓ LayoutSQL;n=2048 (1185ms) + ✓ LayoutSQL;n=4096 (4481ms) + ✓ LayoutSQL;n=8192 (17602ms) + ✓ LayoutSQL;n=16384 (73043ms) + ✓ LayoutSQL;n=32768 (294160ms) + ✓ LayoutSQL;n=65536 (1266269ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run16.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..e848d2c3736f0f51dfbae5fb37a6f842a28b9850 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run16.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (8ms) + ✓ LayoutView;n=64 (10ms) + ✓ LayoutView;n=128 (14ms) + ✓ LayoutView;n=256 (25ms) + ✓ LayoutView;n=512 (97ms) + ✓ LayoutView;n=1024 (235ms) + ✓ LayoutView;n=2048 (914ms) + ✓ LayoutView;n=4096 (3217ms) + ✓ LayoutView;n=8192 (12913ms) + ✓ LayoutView;n=16384 (56379ms) + ✓ LayoutView;n=32768 (260967ms) + ✓ LayoutView;n=65536 (1130561ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (8ms) + ✓ LayoutSQL;n=128 (24ms) + ✓ LayoutSQL;n=256 (39ms) + ✓ LayoutSQL;n=512 (143ms) + ✓ LayoutSQL;n=1024 (389ms) + ✓ LayoutSQL;n=2048 (1463ms) + ✓ LayoutSQL;n=4096 (5234ms) + ✓ LayoutSQL;n=8192 (21042ms) + ✓ LayoutSQL;n=16384 (87723ms) + ✓ LayoutSQL;n=32768 (379872ms) + ✓ LayoutSQL;n=65536 (1297843ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run17.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..a1e3324e951327b3af65e6af45a7b648e937638b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run17.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (3ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (15ms) + ✓ LayoutView;n=256 (42ms) + ✓ LayoutView;n=512 (74ms) + ✓ LayoutView;n=1024 (234ms) + ✓ LayoutView;n=2048 (907ms) + ✓ LayoutView;n=4096 (3203ms) + ✓ LayoutView;n=8192 (12590ms) + ✓ LayoutView;n=16384 (54118ms) + ✓ LayoutView;n=32768 (212548ms) + ✓ LayoutView;n=65536 (1056555ms) + ✓ LayoutSQL;n=16 (12ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (8ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (36ms) + ✓ LayoutSQL;n=512 (103ms) + ✓ LayoutSQL;n=1024 (342ms) + ✓ LayoutSQL;n=2048 (1323ms) + ✓ LayoutSQL;n=4096 (4724ms) + ✓ LayoutSQL;n=8192 (18655ms) + ✓ LayoutSQL;n=16384 (78163ms) + ✓ LayoutSQL;n=32768 (350194ms) + ✓ LayoutSQL;n=65536 (1419162ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run18.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..5fe0f013e9a25c59bc7e4a6e626bb88f8dc7fd62 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run18.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (14ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (7ms) + ✓ LayoutView;n=128 (16ms) + ✓ LayoutView;n=256 (49ms) + ✓ LayoutView;n=512 (78ms) + ✓ LayoutView;n=1024 (234ms) + ✓ LayoutView;n=2048 (908ms) + ✓ LayoutView;n=4096 (3395ms) + ✓ LayoutView;n=8192 (13851ms) + ✓ LayoutView;n=16384 (62956ms) + ✓ LayoutView;n=32768 (227464ms) + ✓ LayoutView;n=65536 (1112786ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (32ms) + ✓ LayoutSQL;n=256 (35ms) + ✓ LayoutSQL;n=512 (103ms) + ✓ LayoutSQL;n=1024 (343ms) + ✓ LayoutSQL;n=2048 (1240ms) + ✓ LayoutSQL;n=4096 (4799ms) + ✓ LayoutSQL;n=8192 (17669ms) + ✓ LayoutSQL;n=16384 (81725ms) + ✓ LayoutSQL;n=32768 (329278ms) + ✓ LayoutSQL;n=65536 (1326405ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run19.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..0294a3493b3f5500e74ebebf586a2e7464d501ca --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run19.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (15ms) + ✓ LayoutView;n=256 (45ms) + ✓ LayoutView;n=512 (76ms) + ✓ LayoutView;n=1024 (237ms) + ✓ LayoutView;n=2048 (932ms) + ✓ LayoutView;n=4096 (3263ms) + ✓ LayoutView;n=8192 (13082ms) + ✓ LayoutView;n=16384 (55422ms) + ✓ LayoutView;n=32768 (217561ms) + ✓ LayoutView;n=65536 (1108452ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (33ms) + ✓ LayoutSQL;n=512 (94ms) + ✓ LayoutSQL;n=1024 (321ms) + ✓ LayoutSQL;n=2048 (1147ms) + ✓ LayoutSQL;n=4096 (4841ms) + ✓ LayoutSQL;n=8192 (18653ms) + ✓ LayoutSQL;n=16384 (80024ms) + ✓ LayoutSQL;n=32768 (310163ms) + ✓ LayoutSQL;n=65536 (1316729ms) + + + 26 passing (52m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run2.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..abfeb704c8f7ac52d9015432701a0227f71c389c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run2.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (19ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (35ms) + ✓ LayoutView;n=128 (14ms) + ✓ LayoutView;n=256 (27ms) + ✓ LayoutView;n=512 (86ms) + ✓ LayoutView;n=1024 (244ms) + ✓ LayoutView;n=2048 (946ms) + ✓ LayoutView;n=4096 (3284ms) + ✓ LayoutView;n=8192 (13298ms) + ✓ LayoutView;n=16384 (57180ms) + ✓ LayoutView;n=32768 (234954ms) + ✓ LayoutView;n=65536 (1122195ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (36ms) + ✓ LayoutSQL;n=512 (111ms) + ✓ LayoutSQL;n=1024 (389ms) + ✓ LayoutSQL;n=2048 (1372ms) + ✓ LayoutSQL;n=4096 (4928ms) + ✓ LayoutSQL;n=8192 (20829ms) + ✓ LayoutSQL;n=16384 (92936ms) + ✓ LayoutSQL;n=32768 (361270ms) + ✓ LayoutSQL;n=65536 (1286800ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run20.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..8c642e3cfed39364c87bcf569f44d7cb9593864f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run20.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (5ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (20ms) + ✓ LayoutView;n=256 (24ms) + ✓ LayoutView;n=512 (95ms) + ✓ LayoutView;n=1024 (237ms) + ✓ LayoutView;n=2048 (927ms) + ✓ LayoutView;n=4096 (3246ms) + ✓ LayoutView;n=8192 (12853ms) + ✓ LayoutView;n=16384 (56118ms) + ✓ LayoutView;n=32768 (238405ms) + ✓ LayoutView;n=65536 (1200087ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (12ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (24ms) + ✓ LayoutSQL;n=256 (36ms) + ✓ LayoutSQL;n=512 (111ms) + ✓ LayoutSQL;n=1024 (378ms) + ✓ LayoutSQL;n=2048 (1356ms) + ✓ LayoutSQL;n=4096 (5236ms) + ✓ LayoutSQL;n=8192 (21551ms) + ✓ LayoutSQL;n=16384 (85416ms) + ✓ LayoutSQL;n=32768 (332041ms) + ✓ LayoutSQL;n=65536 (1294522ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run3.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..293ec1154805fe8d2d508fbdb5b1925fbb95c19a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run3.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (13ms) + ✓ LayoutView;n=256 (45ms) + ✓ LayoutView;n=512 (81ms) + ✓ LayoutView;n=1024 (241ms) + ✓ LayoutView;n=2048 (944ms) + ✓ LayoutView;n=4096 (3286ms) + ✓ LayoutView;n=8192 (12968ms) + ✓ LayoutView;n=16384 (57607ms) + ✓ LayoutView;n=32768 (247556ms) + ✓ LayoutView;n=65536 (1110413ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (32ms) + ✓ LayoutSQL;n=512 (96ms) + ✓ LayoutSQL;n=1024 (323ms) + ✓ LayoutSQL;n=2048 (1156ms) + ✓ LayoutSQL;n=4096 (4479ms) + ✓ LayoutSQL;n=8192 (19034ms) + ✓ LayoutSQL;n=16384 (82630ms) + ✓ LayoutSQL;n=32768 (306105ms) + ✓ LayoutSQL;n=65536 (1320387ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run4.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..ac09c3017bd94e08418c79590fc4841358f95c4f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run4.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (7ms) + ✓ LayoutView;n=128 (12ms) + ✓ LayoutView;n=256 (43ms) + ✓ LayoutView;n=512 (75ms) + ✓ LayoutView;n=1024 (238ms) + ✓ LayoutView;n=2048 (916ms) + ✓ LayoutView;n=4096 (3237ms) + ✓ LayoutView;n=8192 (13153ms) + ✓ LayoutView;n=16384 (56140ms) + ✓ LayoutView;n=32768 (263785ms) + ✓ LayoutView;n=65536 (1107475ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (8ms) + ✓ LayoutSQL;n=128 (24ms) + ✓ LayoutSQL;n=256 (34ms) + ✓ LayoutSQL;n=512 (98ms) + ✓ LayoutSQL;n=1024 (326ms) + ✓ LayoutSQL;n=2048 (1153ms) + ✓ LayoutSQL;n=4096 (4563ms) + ✓ LayoutSQL;n=8192 (18079ms) + ✓ LayoutSQL;n=16384 (73091ms) + ✓ LayoutSQL;n=32768 (290954ms) + ✓ LayoutSQL;n=65536 (1268646ms) + + + 26 passing (52m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run5.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..2912f0834e062a71c6914353bf9cdf230814ff0e --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run5.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (19ms) + ✓ LayoutView;n=256 (42ms) + ✓ LayoutView;n=512 (81ms) + ✓ LayoutView;n=1024 (241ms) + ✓ LayoutView;n=2048 (941ms) + ✓ LayoutView;n=4096 (3311ms) + ✓ LayoutView;n=8192 (13335ms) + ✓ LayoutView;n=16384 (53869ms) + ✓ LayoutView;n=32768 (222038ms) + ✓ LayoutView;n=65536 (1153645ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (6ms) + ✓ LayoutSQL;n=64 (8ms) + ✓ LayoutSQL;n=128 (24ms) + ✓ LayoutSQL;n=256 (87ms) + ✓ LayoutSQL;n=512 (109ms) + ✓ LayoutSQL;n=1024 (356ms) + ✓ LayoutSQL;n=2048 (1269ms) + ✓ LayoutSQL;n=4096 (4892ms) + ✓ LayoutSQL;n=8192 (19766ms) + ✓ LayoutSQL;n=16384 (81905ms) + ✓ LayoutSQL;n=32768 (309171ms) + ✓ LayoutSQL;n=65536 (1401408ms) + + + 26 passing (54m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run6.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..d61522c0b4e91ccd0abffb7ebfff7cdc973c2409 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run6.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (9ms) + ✓ LayoutView;n=128 (15ms) + ✓ LayoutView;n=256 (28ms) + ✓ LayoutView;n=512 (98ms) + ✓ LayoutView;n=1024 (245ms) + ✓ LayoutView;n=2048 (946ms) + ✓ LayoutView;n=4096 (3359ms) + ✓ LayoutView;n=8192 (13620ms) + ✓ LayoutView;n=16384 (60992ms) + ✓ LayoutView;n=32768 (218526ms) + ✓ LayoutView;n=65536 (1164577ms) + ✓ LayoutSQL;n=16 (12ms) + ✓ LayoutSQL;n=32 (7ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (26ms) + ✓ LayoutSQL;n=256 (36ms) + ✓ LayoutSQL;n=512 (104ms) + ✓ LayoutSQL;n=1024 (359ms) + ✓ LayoutSQL;n=2048 (1252ms) + ✓ LayoutSQL;n=4096 (4786ms) + ✓ LayoutSQL;n=8192 (19026ms) + ✓ LayoutSQL;n=16384 (78527ms) + ✓ LayoutSQL;n=32768 (316930ms) + ✓ LayoutSQL;n=65536 (1280018ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run7.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..42522c0d82c408dcd256bf886a8e46b3aed375f1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run7.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (17ms) + ✓ LayoutView;n=32 (5ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (14ms) + ✓ LayoutView;n=256 (47ms) + ✓ LayoutView;n=512 (79ms) + ✓ LayoutView;n=1024 (246ms) + ✓ LayoutView;n=2048 (945ms) + ✓ LayoutView;n=4096 (3273ms) + ✓ LayoutView;n=8192 (12870ms) + ✓ LayoutView;n=16384 (57550ms) + ✓ LayoutView;n=32768 (211668ms) + ✓ LayoutView;n=65536 (1105380ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (7ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (34ms) + ✓ LayoutSQL;n=512 (96ms) + ✓ LayoutSQL;n=1024 (315ms) + ✓ LayoutSQL;n=2048 (1133ms) + ✓ LayoutSQL;n=4096 (4353ms) + ✓ LayoutSQL;n=8192 (17252ms) + ✓ LayoutSQL;n=16384 (70802ms) + ✓ LayoutSQL;n=32768 (291707ms) + ✓ LayoutSQL;n=65536 (1299453ms) + + + 26 passing (51m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run8.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..a1ee3745a567a1d999778ca937cc05f8bfc7acc2 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run8.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (5ms) + ✓ LayoutView;n=64 (7ms) + ✓ LayoutView;n=128 (17ms) + ✓ LayoutView;n=256 (51ms) + ✓ LayoutView;n=512 (78ms) + ✓ LayoutView;n=1024 (233ms) + ✓ LayoutView;n=2048 (902ms) + ✓ LayoutView;n=4096 (3150ms) + ✓ LayoutView;n=8192 (12670ms) + ✓ LayoutView;n=16384 (52253ms) + ✓ LayoutView;n=32768 (240058ms) + ✓ LayoutView;n=65536 (1105205ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (22ms) + ✓ LayoutSQL;n=256 (35ms) + ✓ LayoutSQL;n=512 (105ms) + ✓ LayoutSQL;n=1024 (365ms) + ✓ LayoutSQL;n=2048 (1327ms) + ✓ LayoutSQL;n=4096 (4992ms) + ✓ LayoutSQL;n=8192 (20094ms) + ✓ LayoutSQL;n=16384 (85103ms) + ✓ LayoutSQL;n=32768 (344493ms) + ✓ LayoutSQL;n=65536 (1296845ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear2/run9.test b/experiments/develop_processed_var_graph/2018-10-04/linear2/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..6dec6cbb4304c1579a50b4d47801cf6ebfa2060e --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear2/run9.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (15ms) + ✓ LayoutView;n=32 (4ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (14ms) + ✓ LayoutView;n=256 (45ms) + ✓ LayoutView;n=512 (77ms) + ✓ LayoutView;n=1024 (244ms) + ✓ LayoutView;n=2048 (937ms) + ✓ LayoutView;n=4096 (3284ms) + ✓ LayoutView;n=8192 (13528ms) + ✓ LayoutView;n=16384 (58388ms) + ✓ LayoutView;n=32768 (249771ms) + ✓ LayoutView;n=65536 (1140448ms) + ✓ LayoutSQL;n=16 (11ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (7ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (33ms) + ✓ LayoutSQL;n=512 (95ms) + ✓ LayoutSQL;n=1024 (312ms) + ✓ LayoutSQL;n=2048 (1099ms) + ✓ LayoutSQL;n=4096 (4217ms) + ✓ LayoutSQL;n=8192 (16701ms) + ✓ LayoutSQL;n=16384 (76744ms) + ✓ LayoutSQL;n=32768 (313058ms) + ✓ LayoutSQL;n=65536 (1287508ms) + + + 26 passing (53m) + + +=============================== Coverage summary =============================== +Statements : 57.05% ( 583/1022 ) +Branches : 31.38% ( 134/427 ) +Functions : 53.54% ( 106/198 ) +Lines : 57.6% ( 557/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..015c230f0fe2a052b7d938425c0aa0291dd59fdb --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 236.85 +Mediana = 241 +Variancia = 383.4 +Desvio Padrao = 19.58 +Coef. Variacao = 0.08 +Min = 211 +Max = 268 +Esq, Dir. = 229.6483 , 244.0517 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..42e5de6d28db0f635e507cf05451756181091fa4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutSQL.res @@ -0,0 +1,20 @@ +1024 217 +1024 211 +1024 265 +1024 220 +1024 268 +1024 213 +1024 218 +1024 245 +1024 254 +1024 260 +1024 213 +1024 217 +1024 251 +1024 258 +1024 242 +1024 227 +1024 245 +1024 220 +1024 240 +1024 253 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..c01acd79cde8d57a8d641b00702fa5c3b86d09ef --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.R @@ -0,0 +1,8 @@ +Media = 555.2 +Mediana = 622.5 +Variancia = 46158.06 +Desvio Padrao = 214.84 +Coef. Variacao = 0.39 +Min = 91 +Max = 975 +Esq, Dir. = 476.1802 , 634.2198 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..26f85dd6c050331359e44cee47ff984be65199f6 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/1024-LayoutView.res @@ -0,0 +1,20 @@ +1024 595 +1024 591 +1024 634 +1024 647 +1024 645 +1024 653 +1024 639 +1024 562 +1024 631 +1024 110 +1024 540 +1024 649 +1024 562 +1024 91 +1024 622 +1024 98 +1024 975 +1024 574 +1024 623 +1024 663 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..ede88f0eaa7b68c9f80fc22af0bdd49872ee1b09 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 18.05 +Mediana = 18 +Variancia = 4.16 +Desvio Padrao = 2.04 +Coef. Variacao = 0.11 +Min = 15 +Max = 23 +Esq, Dir. = 17.3003 , 18.7997 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b7a9987074fc9eabd675480aa369a75c383ea689 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutSQL.res @@ -0,0 +1,20 @@ +128 18 +128 17 +128 18 +128 16 +128 15 +128 23 +128 18 +128 21 +128 18 +128 18 +128 17 +128 18 +128 17 +128 17 +128 23 +128 17 +128 17 +128 18 +128 17 +128 18 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..9e518b7282b60ad5e5c72794abb8f8b731a61b41 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.R @@ -0,0 +1,8 @@ +Media = 32.4 +Mediana = 35 +Variancia = 76.67 +Desvio Padrao = 8.76 +Coef. Variacao = 0.27 +Min = 9 +Max = 42 +Esq, Dir. = 29.1794 , 35.6206 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..6d98f526365003e3cf006abd1abd41479be0ba16 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/128-LayoutView.res @@ -0,0 +1,20 @@ +128 35 +128 36 +128 33 +128 30 +128 38 +128 37 +128 31 +128 31 +128 38 +128 10 +128 31 +128 42 +128 35 +128 29 +128 42 +128 9 +128 39 +128 29 +128 36 +128 37 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..f1e84794da7457a658ce3ef8d6edbf380a302e59 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 9.35 +Mediana = 9 +Variancia = 0.34 +Desvio Padrao = 0.59 +Coef. Variacao = 0.06 +Min = 8 +Max = 10 +Esq, Dir. = 9.134 , 9.566 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..246ec97d9704eeb56e0d90cd8e570b07a0917b50 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutSQL.res @@ -0,0 +1,20 @@ +16 9 +16 9 +16 10 +16 9 +16 9 +16 9 +16 10 +16 10 +16 10 +16 10 +16 9 +16 10 +16 9 +16 9 +16 10 +16 9 +16 8 +16 10 +16 9 +16 9 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..2566d75a446fb776a8f0b063a78a7fb4e5e3d7df --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.R @@ -0,0 +1,8 @@ +Media = 28.9 +Mediana = 27.5 +Variancia = 137.25 +Desvio Padrao = 11.72 +Coef. Variacao = 0.41 +Min = 16 +Max = 76 +Esq, Dir. = 24.591 , 33.209 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..74fdbd7f8f98ca98cb173c35361203f04ec2c384 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16-LayoutView.res @@ -0,0 +1,20 @@ +16 22 +16 28 +16 27 +16 23 +16 28 +16 29 +16 28 +16 30 +16 26 +16 16 +16 26 +16 24 +16 31 +16 23 +16 28 +16 76 +16 23 +16 31 +16 32 +16 27 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..336a6920c64551b3dd424af9da239fd07d25e99b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 7060 +Mediana = 7083.5 +Variancia = 30282 +Desvio Padrao = 174.02 +Coef. Variacao = 0.02 +Min = 6773 +Max = 7397 +Esq, Dir. = 6995.9964 , 7124.0036 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..b16e29967d54f4d996c3c3318aa2210798209ab8 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutSQL.res @@ -0,0 +1,20 @@ +16384 7397 +16384 7076 +16384 7010 +16384 7146 +16384 6830 +16384 7342 +16384 6825 +16384 6946 +16384 6918 +16384 7095 +16384 7124 +16384 7291 +16384 7112 +16384 7069 +16384 6801 +16384 6773 +16384 7186 +16384 7053 +16384 7091 +16384 7115 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..5ec6965d203354ce2af5fa8921aae8bbcaa64230 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.R @@ -0,0 +1,8 @@ +Media = 6594.55 +Mediana = 6622.5 +Variancia = 40862.05 +Desvio Padrao = 202.14 +Coef. Variacao = 0.03 +Min = 6290 +Max = 7107 +Esq, Dir. = 6520.2015 , 6668.8985 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..3e15fa78ebb6ec56dc8ab1bf3044345c7abb9e77 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/16384-LayoutView.res @@ -0,0 +1,20 @@ +16384 6839 +16384 6410 +16384 6309 +16384 6290 +16384 6451 +16384 7107 +16384 6498 +16384 6641 +16384 6628 +16384 6621 +16384 6518 +16384 6315 +16384 6646 +16384 6828 +16384 6441 +16384 6777 +16384 6694 +16384 6648 +16384 6606 +16384 6624 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..4517de54cf57dcb1322279ae9e93f24e362feac5 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 838.25 +Mediana = 823 +Variancia = 13424.51 +Desvio Padrao = 115.86 +Coef. Variacao = 0.14 +Min = 712 +Max = 1040 +Esq, Dir. = 795.6351 , 880.8649 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..25b52920bee82b79443cb39f652fe89c00010c06 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutSQL.res @@ -0,0 +1,20 @@ +2048 725 +2048 715 +2048 874 +2048 714 +2048 948 +2048 754 +2048 728 +2048 754 +2048 998 +2048 938 +2048 712 +2048 723 +2048 1040 +2048 977 +2048 925 +2048 730 +2048 872 +2048 774 +2048 983 +2048 881 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..ff727321eb3c244292ea3e5120c1865967460ad0 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.R @@ -0,0 +1,8 @@ +Media = 741.55 +Mediana = 780.5 +Variancia = 71849.94 +Desvio Padrao = 268.05 +Coef. Variacao = 0.36 +Min = 187 +Max = 1111 +Esq, Dir. = 642.9617 , 840.1383 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..202b6a611f79a8ae31701d4e8f3d408744eb81d1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/2048-LayoutView.res @@ -0,0 +1,20 @@ +2048 971 +2048 627 +2048 994 +2048 692 +2048 875 +2048 677 +2048 873 +2048 763 +2048 966 +2048 189 +2048 1111 +2048 905 +2048 798 +2048 187 +2048 728 +2048 197 +2048 944 +2048 898 +2048 735 +2048 701 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..5b125290e0fd1a3cbfce8ad61c855e03e11e8c5f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 30.15 +Mediana = 30 +Variancia = 4.24 +Desvio Padrao = 2.06 +Coef. Variacao = 0.07 +Min = 27 +Max = 37 +Esq, Dir. = 29.3927 , 30.9073 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..68e821971be094105564cc2e65cc80be18583b4f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutSQL.res @@ -0,0 +1,20 @@ +256 29 +256 29 +256 32 +256 30 +256 27 +256 30 +256 29 +256 37 +256 29 +256 29 +256 32 +256 30 +256 28 +256 30 +256 30 +256 32 +256 31 +256 30 +256 30 +256 29 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..77710bb80595343560034b61fc190f90789c2d09 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.R @@ -0,0 +1,8 @@ +Media = 77.15 +Mediana = 80 +Variancia = 293.5 +Desvio Padrao = 17.13 +Coef. Variacao = 0.22 +Min = 29 +Max = 98 +Esq, Dir. = 70.8489 , 83.4511 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..65737371435aacae3cbe231a75a072eae1008c96 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/256-LayoutView.res @@ -0,0 +1,20 @@ +256 93 +256 79 +256 78 +256 82 +256 84 +256 83 +256 82 +256 66 +256 79 +256 61 +256 71 +256 97 +256 80 +256 47 +256 95 +256 29 +256 98 +256 66 +256 80 +256 93 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..4ad8a842a536b88ba12995da4748cf86885a254b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 4.55 +Mediana = 5 +Variancia = 0.26 +Desvio Padrao = 0.51 +Coef. Variacao = 0.11 +Min = 4 +Max = 5 +Esq, Dir. = 4.3623 , 4.7377 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..71b8a5301986f0d8853e64c1ef4ac36df6dda86c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutSQL.res @@ -0,0 +1,20 @@ +32 4 +32 4 +32 4 +32 4 +32 4 +32 5 +32 5 +32 5 +32 5 +32 5 +32 4 +32 5 +32 4 +32 4 +32 5 +32 5 +32 5 +32 5 +32 4 +32 5 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..68c9079d090ae58db61765cf661df95c550c143c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.R @@ -0,0 +1,8 @@ +Media = 10.1 +Mediana = 10 +Variancia = 7.46 +Desvio Padrao = 2.73 +Coef. Variacao = 0.27 +Min = 3 +Max = 15 +Esq, Dir. = 9.0952 , 11.1048 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..4e6f9197961a489fa36c339fabb90fbac71cc5dc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32-LayoutView.res @@ -0,0 +1,20 @@ +32 10 +32 10 +32 10 +32 9 +32 11 +32 12 +32 9 +32 10 +32 10 +32 3 +32 9 +32 10 +32 11 +32 8 +32 12 +32 5 +32 15 +32 11 +32 13 +32 14 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..ebb813436e85fece3e03ddbe695a35c1b2ad0401 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 32206.5 +Mediana = 32480.5 +Variancia = 1562870.16 +Desvio Padrao = 1250.15 +Coef. Variacao = 0.04 +Min = 30180 +Max = 34491 +Esq, Dir. = 31746.695 , 32666.305 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..bcdf8339167f7734d76d618a9776c32d21663000 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutSQL.res @@ -0,0 +1,20 @@ +32768 32650 +32768 31660 +32768 31257 +32768 30347 +32768 32627 +32768 34491 +32768 32319 +32768 30180 +32768 30228 +32768 33725 +32768 33814 +32768 33048 +32768 31767 +32768 32727 +32768 30268 +32768 31944 +32768 32906 +32768 32937 +32768 32901 +32768 32334 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..f65164a62ef8f03dd068cd500fe26e6c9cadadf1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.R @@ -0,0 +1,8 @@ +Media = 26508.15 +Mediana = 26503 +Variancia = 1153449.5 +Desvio Padrao = 1073.99 +Coef. Variacao = 0.04 +Min = 25121 +Max = 29213 +Esq, Dir. = 26113.1369 , 26903.1631 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..9cbc1a0fab26bd3b2cece085bb4d82bfbdd2289f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/32768-LayoutView.res @@ -0,0 +1,20 @@ +32768 28136 +32768 25285 +32768 25602 +32768 26059 +32768 27455 +32768 29213 +32768 26620 +32768 25381 +32768 26702 +32768 27214 +32768 25324 +32768 26806 +32768 26544 +32768 27330 +32768 26462 +32768 27455 +32768 25858 +32768 25121 +32768 26181 +32768 25415 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..941d26dc4ca7f7c52a9562c4711ef2be3b01c35f --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 4204.9 +Mediana = 4219 +Variancia = 200299.67 +Desvio Padrao = 447.55 +Coef. Variacao = 0.11 +Min = 3469 +Max = 4842 +Esq, Dir. = 4040.2915 , 4369.5085 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..161ff904865983e01fc1836ede784ca28c792324 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutSQL.res @@ -0,0 +1,20 @@ +4096 3688 +4096 3744 +4096 4229 +4096 3755 +4096 4842 +4096 4166 +4096 3681 +4096 3619 +4096 4615 +4096 4607 +4096 3469 +4096 3771 +4096 4598 +4096 4631 +4096 4209 +4096 4595 +4096 4643 +4096 4025 +4096 4654 +4096 4557 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..afdb4134ef1e94e3a4524e12df511478224f5134 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.R @@ -0,0 +1,8 @@ +Media = 586.75 +Mediana = 579 +Variancia = 3066.93 +Desvio Padrao = 55.38 +Coef. Variacao = 0.09 +Min = 512 +Max = 717 +Esq, Dir. = 566.3812 , 607.1188 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..df96f0e79511e7e5842efdd7be0b981974d4f53e --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/4096-LayoutView.res @@ -0,0 +1,20 @@ +4096 572 +4096 530 +4096 672 +4096 512 +4096 528 +4096 594 +4096 587 +4096 571 +4096 616 +4096 537 +4096 624 +4096 592 +4096 586 +4096 550 +4096 717 +4096 557 +4096 564 +4096 679 +4096 623 +4096 524 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..0b1e1705ba8c365128ea80284432952eba36e155 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 73 +Mediana = 74.5 +Variancia = 157.89 +Desvio Padrao = 12.57 +Coef. Variacao = 0.17 +Min = 53 +Max = 93 +Esq, Dir. = 68.3784 , 77.6216 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..fc7c8cd055a3f6a27d60db5ca19b536998cb3da1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutSQL.res @@ -0,0 +1,20 @@ +512 59 +512 77 +512 64 +512 53 +512 60 +512 82 +512 77 +512 81 +512 59 +512 61 +512 60 +512 70 +512 72 +512 90 +512 93 +512 61 +512 83 +512 89 +512 83 +512 86 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..da22af1252e00eddd0a2b4ef4f260fff4be564b0 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.R @@ -0,0 +1,8 @@ +Media = 175.85 +Mediana = 193.5 +Variancia = 3300.98 +Desvio Padrao = 57.45 +Coef. Variacao = 0.33 +Min = 30 +Max = 253 +Esq, Dir. = 154.7183 , 196.9817 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..890d5df298b6fc3b1f45553c73f050353fe59390 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/512-LayoutView.res @@ -0,0 +1,20 @@ +512 196 +512 201 +512 198 +512 219 +512 199 +512 191 +512 192 +512 160 +512 191 +512 30 +512 165 +512 203 +512 209 +512 110 +512 253 +512 32 +512 229 +512 158 +512 186 +512 195 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..f547f5dd2801f72d9d0bdaae2bb7b77d19dcf098 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 9.75 +Mediana = 9 +Variancia = 1.46 +Desvio Padrao = 1.21 +Coef. Variacao = 0.12 +Min = 9 +Max = 14 +Esq, Dir. = 9.3055 , 10.1945 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..a2454012c286fcac21973dc65390a1ed738d4d36 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutSQL.res @@ -0,0 +1,20 @@ +64 9 +64 9 +64 10 +64 9 +64 9 +64 11 +64 10 +64 11 +64 9 +64 10 +64 9 +64 10 +64 9 +64 9 +64 14 +64 9 +64 10 +64 9 +64 9 +64 10 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..0c4dc0a21151591acd301d44cb20a4bf43a646bb --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.R @@ -0,0 +1,8 @@ +Media = 35.95 +Mediana = 21 +Variancia = 509.73 +Desvio Padrao = 22.58 +Coef. Variacao = 0.63 +Min = 6 +Max = 67 +Esq, Dir. = 27.6461 , 44.2539 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..639cfd7ab3c2c48910e7e7b146f233f6185035d3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/64-LayoutView.res @@ -0,0 +1,20 @@ +64 17 +64 58 +64 56 +64 48 +64 20 +64 61 +64 57 +64 63 +64 18 +64 10 +64 18 +64 18 +64 21 +64 14 +64 21 +64 6 +64 19 +64 63 +64 64 +64 67 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..d2da5b13def8690072d08ff9378058702a4c3cc1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 126771.8 +Mediana = 126159 +Variancia = 63428410.91 +Desvio Padrao = 7964.2 +Coef. Variacao = 0.06 +Min = 110319 +Max = 142667 +Esq, Dir. = 123842.5653 , 129701.0347 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..4521f877a44133c8dea1c4e59b68e9c2b42fa4d0 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutSQL.res @@ -0,0 +1,20 @@ +65536 142667 +65536 124400 +65536 124345 +65536 127328 +65536 131390 +65536 123654 +65536 139722 +65536 110319 +65536 132519 +65536 125051 +65536 125103 +65536 128618 +65536 127215 +65536 136132 +65536 123912 +65536 129868 +65536 124985 +65536 113758 +65536 129626 +65536 114824 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..c27d5c515084591701828a873323c6b6b9c97769 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.R @@ -0,0 +1,8 @@ +Media = 112997.7 +Mediana = 112253.5 +Variancia = 91106857.06 +Desvio Padrao = 9544.99 +Coef. Variacao = 0.08 +Min = 97588 +Max = 125042 +Esq, Dir. = 109487.0479 , 116508.3521 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..c3ee00564374eeb5551b9af99ef5aa7712fe22eb --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/65536-LayoutView.res @@ -0,0 +1,20 @@ +65536 123995 +65536 99696 +65536 121875 +65536 97588 +65536 123009 +65536 122941 +65536 105341 +65536 105851 +65536 125042 +65536 118267 +65536 107093 +65536 112587 +65536 100163 +65536 118519 +65536 102443 +65536 124791 +65536 106536 +65536 109375 +65536 122922 +65536 111920 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..32d7b3b9051e8c0cb9dd7286d0dc261cec7abdf1 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.R @@ -0,0 +1,8 @@ +Media = 2146.85 +Mediana = 2146 +Variancia = 4278.13 +Desvio Padrao = 65.41 +Coef. Variacao = 0.03 +Min = 2040 +Max = 2280 +Esq, Dir. = 2122.7931 , 2170.9069 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..569097693898c4296d3041621d3822a235a474bd --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutSQL.res @@ -0,0 +1,20 @@ +8192 2156 +8192 2216 +8192 2163 +8192 2220 +8192 2063 +8192 2197 +8192 2088 +8192 2175 +8192 2226 +8192 2280 +8192 2210 +8192 2137 +8192 2148 +8192 2094 +8192 2040 +8192 2054 +8192 2141 +8192 2101 +8192 2144 +8192 2084 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutV.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutV.R new file mode 100644 index 0000000000000000000000000000000000000000..a312d4c705b544369313810622fcd4c886ab8b5c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutV.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 12 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.R b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.R new file mode 100644 index 0000000000000000000000000000000000000000..7d94812bdc3105c810d8e8eff8d48ef0448079ab --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.R @@ -0,0 +1,8 @@ +Media = 1925.55 +Mediana = 1915.5 +Variancia = 9475.52 +Desvio Padrao = 97.34 +Coef. Variacao = 0.05 +Min = 1723 +Max = 2155 +Esq, Dir. = 1889.7475 , 1961.3525 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.res b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.res new file mode 100644 index 0000000000000000000000000000000000000000..304452ca99e23913445d09e07a02f33b5b237a9d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/8192-LayoutView.res @@ -0,0 +1,20 @@ +8192 2003 +8192 1888 +8192 1800 +8192 1723 +8192 1850 +8192 2072 +8192 1987 +8192 1956 +8192 1955 +8192 1858 +8192 1911 +8192 1807 +8192 2006 +8192 1901 +8192 1887 +8192 1920 +8192 1949 +8192 1973 +8192 1910 +8192 2155 diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run1.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run1.test new file mode 100644 index 0000000000000000000000000000000000000000..cbd9a7a0d41a8697c5814640a4baba984410f8b3 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run1.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (26ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (18ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (71ms) + ✓ LayoutView;n=512 (165ms) + ✓ LayoutView;n=1024 (540ms) + ✓ LayoutView;n=2048 (1111ms) + ✓ LayoutView;n=4096 (624ms) + ✓ LayoutView;n=8192 (1911ms) + ✓ LayoutView;n=16384 (6518ms) + ✓ LayoutView;n=32768 (25324ms) + ✓ LayoutView;n=65536 (107093ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (32ms) + ✓ LayoutSQL;n=512 (60ms) + ✓ LayoutSQL;n=1024 (213ms) + ✓ LayoutSQL;n=2048 (712ms) + ✓ LayoutSQL;n=4096 (3469ms) + ✓ LayoutSQL;n=8192 (2210ms) + ✓ LayoutSQL;n=16384 (7124ms) + ✓ LayoutSQL;n=32768 (33814ms) + ✓ LayoutSQL;n=65536 (125103ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run10.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run10.test new file mode 100644 index 0000000000000000000000000000000000000000..06cfda5a54179e528dcb73fc70c39bc450d26c78 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run10.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (16ms) + ✓ LayoutView;n=32 (3ms) + ✓ LayoutView;n=64 (10ms) + ✓ LayoutView;n=128 (10ms) + ✓ LayoutView;n=256 (61ms) + ✓ LayoutView;n=512 (30ms) + ✓ LayoutView;n=1024 (110ms) + ✓ LayoutView;n=2048 (189ms) + ✓ LayoutView;n=4096 (537ms) + ✓ LayoutView;n=8192 (1858ms) + ✓ LayoutView;n=16384 (6621ms) + ✓ LayoutView;n=32768 (27214ms) + ✓ LayoutView;n=65536 (118267ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (29ms) + ✓ LayoutSQL;n=512 (61ms) + ✓ LayoutSQL;n=1024 (260ms) + ✓ LayoutSQL;n=2048 (938ms) + ✓ LayoutSQL;n=4096 (4607ms) + ✓ LayoutSQL;n=8192 (2280ms) + ✓ LayoutSQL;n=16384 (7095ms) + ✓ LayoutSQL;n=32768 (33725ms) + ✓ LayoutSQL;n=65536 (125051ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run11.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run11.test new file mode 100644 index 0000000000000000000000000000000000000000..c0aa78a51093378b877317e03d6135793818559d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run11.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (27ms) + ✓ LayoutView;n=32 (14ms) + ✓ LayoutView;n=64 (67ms) + ✓ LayoutView;n=128 (37ms) + ✓ LayoutView;n=256 (93ms) + ✓ LayoutView;n=512 (195ms) + ✓ LayoutView;n=1024 (663ms) + ✓ LayoutView;n=2048 (701ms) + ✓ LayoutView;n=4096 (524ms) + ✓ LayoutView;n=8192 (2155ms) + ✓ LayoutView;n=16384 (6624ms) + ✓ LayoutView;n=32768 (25415ms) + ✓ LayoutView;n=65536 (111920ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (29ms) + ✓ LayoutSQL;n=512 (86ms) + ✓ LayoutSQL;n=1024 (253ms) + ✓ LayoutSQL;n=2048 (881ms) + ✓ LayoutSQL;n=4096 (4557ms) + ✓ LayoutSQL;n=8192 (2084ms) + ✓ LayoutSQL;n=16384 (7115ms) + ✓ LayoutSQL;n=32768 (32334ms) + ✓ LayoutSQL;n=65536 (114824ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run12.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run12.test new file mode 100644 index 0000000000000000000000000000000000000000..e6c39be58b39a91bccac2c22c86e1e970270ba93 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run12.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (30ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (63ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (66ms) + ✓ LayoutView;n=512 (160ms) + ✓ LayoutView;n=1024 (562ms) + ✓ LayoutView;n=2048 (763ms) + ✓ LayoutView;n=4096 (571ms) + ✓ LayoutView;n=8192 (1956ms) + ✓ LayoutView;n=16384 (6641ms) + ✓ LayoutView;n=32768 (25381ms) + ✓ LayoutView;n=65536 (105851ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (11ms) + ✓ LayoutSQL;n=128 (21ms) + ✓ LayoutSQL;n=256 (37ms) + ✓ LayoutSQL;n=512 (81ms) + ✓ LayoutSQL;n=1024 (245ms) + ✓ LayoutSQL;n=2048 (754ms) + ✓ LayoutSQL;n=4096 (3619ms) + ✓ LayoutSQL;n=8192 (2175ms) + ✓ LayoutSQL;n=16384 (6946ms) + ✓ LayoutSQL;n=32768 (30180ms) + ✓ LayoutSQL;n=65536 (110319ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run13.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run13.test new file mode 100644 index 0000000000000000000000000000000000000000..5a7f12a52ec5bb9007e6523fe551a7202487f24a --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run13.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (76ms) + ✓ LayoutView;n=32 (5ms) + ✓ LayoutView;n=64 (6ms) + ✓ LayoutView;n=128 (9ms) + ✓ LayoutView;n=256 (29ms) + ✓ LayoutView;n=512 (32ms) + ✓ LayoutView;n=1024 (98ms) + ✓ LayoutView;n=2048 (197ms) + ✓ LayoutView;n=4096 (557ms) + ✓ LayoutView;n=8192 (1920ms) + ✓ LayoutView;n=16384 (6777ms) + ✓ LayoutView;n=32768 (27455ms) + ✓ LayoutView;n=65536 (124791ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (32ms) + ✓ LayoutSQL;n=512 (61ms) + ✓ LayoutSQL;n=1024 (227ms) + ✓ LayoutSQL;n=2048 (730ms) + ✓ LayoutSQL;n=4096 (4595ms) + ✓ LayoutSQL;n=8192 (2054ms) + ✓ LayoutSQL;n=16384 (6773ms) + ✓ LayoutSQL;n=32768 (31944ms) + ✓ LayoutSQL;n=65536 (129868ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run14.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run14.test new file mode 100644 index 0000000000000000000000000000000000000000..56726493d4aac7452424226ac245281e66ad39c5 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run14.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (23ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (48ms) + ✓ LayoutView;n=128 (30ms) + ✓ LayoutView;n=256 (82ms) + ✓ LayoutView;n=512 (219ms) + ✓ LayoutView;n=1024 (647ms) + ✓ LayoutView;n=2048 (692ms) + ✓ LayoutView;n=4096 (512ms) + ✓ LayoutView;n=8192 (1723ms) + ✓ LayoutView;n=16384 (6290ms) + ✓ LayoutView;n=32768 (26059ms) + ✓ LayoutView;n=65536 (97588ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (16ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (53ms) + ✓ LayoutSQL;n=1024 (220ms) + ✓ LayoutSQL;n=2048 (714ms) + ✓ LayoutSQL;n=4096 (3755ms) + ✓ LayoutSQL;n=8192 (2220ms) + ✓ LayoutSQL;n=16384 (7146ms) + ✓ LayoutSQL;n=32768 (30347ms) + ✓ LayoutSQL;n=65536 (127328ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run15.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run15.test new file mode 100644 index 0000000000000000000000000000000000000000..609fc0dee81832c126613c5d563c919ab24aee03 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run15.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (28ms) + ✓ LayoutView;n=32 (9ms) + ✓ LayoutView;n=64 (57ms) + ✓ LayoutView;n=128 (31ms) + ✓ LayoutView;n=256 (82ms) + ✓ LayoutView;n=512 (192ms) + ✓ LayoutView;n=1024 (639ms) + ✓ LayoutView;n=2048 (873ms) + ✓ LayoutView;n=4096 (587ms) + ✓ LayoutView;n=8192 (1987ms) + ✓ LayoutView;n=16384 (6498ms) + ✓ LayoutView;n=32768 (26620ms) + ✓ LayoutView;n=65536 (105341ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (29ms) + ✓ LayoutSQL;n=512 (77ms) + ✓ LayoutSQL;n=1024 (218ms) + ✓ LayoutSQL;n=2048 (728ms) + ✓ LayoutSQL;n=4096 (3681ms) + ✓ LayoutSQL;n=8192 (2088ms) + ✓ LayoutSQL;n=16384 (6825ms) + ✓ LayoutSQL;n=32768 (32319ms) + ✓ LayoutSQL;n=65536 (139722ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run16.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run16.test new file mode 100644 index 0000000000000000000000000000000000000000..54194d7d6ea11222b4c2704d362e9929f9ffdbfa --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run16.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (32ms) + ✓ LayoutView;n=32 (13ms) + ✓ LayoutView;n=64 (64ms) + ✓ LayoutView;n=128 (36ms) + ✓ LayoutView;n=256 (80ms) + ✓ LayoutView;n=512 (186ms) + ✓ LayoutView;n=1024 (623ms) + ✓ LayoutView;n=2048 (735ms) + ✓ LayoutView;n=4096 (623ms) + ✓ LayoutView;n=8192 (1910ms) + ✓ LayoutView;n=16384 (6606ms) + ✓ LayoutView;n=32768 (26181ms) + ✓ LayoutView;n=65536 (122922ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (83ms) + ✓ LayoutSQL;n=1024 (240ms) + ✓ LayoutSQL;n=2048 (983ms) + ✓ LayoutSQL;n=4096 (4654ms) + ✓ LayoutSQL;n=8192 (2144ms) + ✓ LayoutSQL;n=16384 (7091ms) + ✓ LayoutSQL;n=32768 (32901ms) + ✓ LayoutSQL;n=65536 (129626ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run17.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run17.test new file mode 100644 index 0000000000000000000000000000000000000000..12818cb86b6bbbd6aef98b7bb09d0921fa55bdd4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run17.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (24ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (18ms) + ✓ LayoutView;n=128 (42ms) + ✓ LayoutView;n=256 (97ms) + ✓ LayoutView;n=512 (203ms) + ✓ LayoutView;n=1024 (649ms) + ✓ LayoutView;n=2048 (905ms) + ✓ LayoutView;n=4096 (592ms) + ✓ LayoutView;n=8192 (1807ms) + ✓ LayoutView;n=16384 (6315ms) + ✓ LayoutView;n=32768 (26806ms) + ✓ LayoutView;n=65536 (112587ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (70ms) + ✓ LayoutSQL;n=1024 (217ms) + ✓ LayoutSQL;n=2048 (723ms) + ✓ LayoutSQL;n=4096 (3771ms) + ✓ LayoutSQL;n=8192 (2137ms) + ✓ LayoutSQL;n=16384 (7291ms) + ✓ LayoutSQL;n=32768 (33048ms) + ✓ LayoutSQL;n=65536 (128618ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run18.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run18.test new file mode 100644 index 0000000000000000000000000000000000000000..e14567a652dd58c8ecfa388c9eea544b5e02f193 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run18.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (31ms) + ✓ LayoutView;n=32 (11ms) + ✓ LayoutView;n=64 (63ms) + ✓ LayoutView;n=128 (29ms) + ✓ LayoutView;n=256 (66ms) + ✓ LayoutView;n=512 (158ms) + ✓ LayoutView;n=1024 (574ms) + ✓ LayoutView;n=2048 (898ms) + ✓ LayoutView;n=4096 (679ms) + ✓ LayoutView;n=8192 (1973ms) + ✓ LayoutView;n=16384 (6648ms) + ✓ LayoutView;n=32768 (25121ms) + ✓ LayoutView;n=65536 (109375ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (89ms) + ✓ LayoutSQL;n=1024 (220ms) + ✓ LayoutSQL;n=2048 (774ms) + ✓ LayoutSQL;n=4096 (4025ms) + ✓ LayoutSQL;n=8192 (2101ms) + ✓ LayoutSQL;n=16384 (7053ms) + ✓ LayoutSQL;n=32768 (32937ms) + ✓ LayoutSQL;n=65536 (113758ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run19.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run19.test new file mode 100644 index 0000000000000000000000000000000000000000..50e8632539255392e9e504c356cb9edf6660226c --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run19.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (22ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (17ms) + ✓ LayoutView;n=128 (35ms) + ✓ LayoutView;n=256 (93ms) + ✓ LayoutView;n=512 (196ms) + ✓ LayoutView;n=1024 (595ms) + ✓ LayoutView;n=2048 (971ms) + ✓ LayoutView;n=4096 (572ms) + ✓ LayoutView;n=8192 (2003ms) + ✓ LayoutView;n=16384 (6839ms) + ✓ LayoutView;n=32768 (28136ms) + ✓ LayoutView;n=65536 (123995ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (29ms) + ✓ LayoutSQL;n=512 (59ms) + ✓ LayoutSQL;n=1024 (217ms) + ✓ LayoutSQL;n=2048 (725ms) + ✓ LayoutSQL;n=4096 (3688ms) + ✓ LayoutSQL;n=8192 (2156ms) + ✓ LayoutSQL;n=16384 (7397ms) + ✓ LayoutSQL;n=32768 (32650ms) + ✓ LayoutSQL;n=65536 (142667ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run2.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run2.test new file mode 100644 index 0000000000000000000000000000000000000000..6020356d1692b425ed32f511cd25cb23fedc3980 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run2.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (27ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (56ms) + ✓ LayoutView;n=128 (33ms) + ✓ LayoutView;n=256 (78ms) + ✓ LayoutView;n=512 (198ms) + ✓ LayoutView;n=1024 (634ms) + ✓ LayoutView;n=2048 (994ms) + ✓ LayoutView;n=4096 (672ms) + ✓ LayoutView;n=8192 (1800ms) + ✓ LayoutView;n=16384 (6309ms) + ✓ LayoutView;n=32768 (25602ms) + ✓ LayoutView;n=65536 (121875ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (32ms) + ✓ LayoutSQL;n=512 (64ms) + ✓ LayoutSQL;n=1024 (265ms) + ✓ LayoutSQL;n=2048 (874ms) + ✓ LayoutSQL;n=4096 (4229ms) + ✓ LayoutSQL;n=8192 (2163ms) + ✓ LayoutSQL;n=16384 (7010ms) + ✓ LayoutSQL;n=32768 (31257ms) + ✓ LayoutSQL;n=65536 (124345ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run20.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run20.test new file mode 100644 index 0000000000000000000000000000000000000000..efb326ee8de81339fe3072a3927fda995eed2713 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run20.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (28ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (58ms) + ✓ LayoutView;n=128 (36ms) + ✓ LayoutView;n=256 (79ms) + ✓ LayoutView;n=512 (201ms) + ✓ LayoutView;n=1024 (591ms) + ✓ LayoutView;n=2048 (627ms) + ✓ LayoutView;n=4096 (530ms) + ✓ LayoutView;n=8192 (1888ms) + ✓ LayoutView;n=16384 (6410ms) + ✓ LayoutView;n=32768 (25285ms) + ✓ LayoutView;n=65536 (99696ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (29ms) + ✓ LayoutSQL;n=512 (77ms) + ✓ LayoutSQL;n=1024 (211ms) + ✓ LayoutSQL;n=2048 (715ms) + ✓ LayoutSQL;n=4096 (3744ms) + ✓ LayoutSQL;n=8192 (2216ms) + ✓ LayoutSQL;n=16384 (7076ms) + ✓ LayoutSQL;n=32768 (31660ms) + ✓ LayoutSQL;n=65536 (124400ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run3.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run3.test new file mode 100644 index 0000000000000000000000000000000000000000..b856af6a953b29611db4543c8567e00c7f7d53db --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run3.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (23ms) + ✓ LayoutView;n=32 (15ms) + ✓ LayoutView;n=64 (19ms) + ✓ LayoutView;n=128 (39ms) + ✓ LayoutView;n=256 (98ms) + ✓ LayoutView;n=512 (229ms) + ✓ LayoutView;n=1024 (975ms) + ✓ LayoutView;n=2048 (944ms) + ✓ LayoutView;n=4096 (564ms) + ✓ LayoutView;n=8192 (1949ms) + ✓ LayoutView;n=16384 (6694ms) + ✓ LayoutView;n=32768 (25858ms) + ✓ LayoutView;n=65536 (106536ms) + ✓ LayoutSQL;n=16 (8ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (10ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (31ms) + ✓ LayoutSQL;n=512 (83ms) + ✓ LayoutSQL;n=1024 (245ms) + ✓ LayoutSQL;n=2048 (872ms) + ✓ LayoutSQL;n=4096 (4643ms) + ✓ LayoutSQL;n=8192 (2141ms) + ✓ LayoutSQL;n=16384 (7186ms) + ✓ LayoutSQL;n=32768 (32906ms) + ✓ LayoutSQL;n=65536 (124985ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run4.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run4.test new file mode 100644 index 0000000000000000000000000000000000000000..5e9a10478b248fd93a15c4903ae31204b756a11b --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run4.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (28ms) + ✓ LayoutView;n=32 (12ms) + ✓ LayoutView;n=64 (21ms) + ✓ LayoutView;n=128 (42ms) + ✓ LayoutView;n=256 (95ms) + ✓ LayoutView;n=512 (253ms) + ✓ LayoutView;n=1024 (622ms) + ✓ LayoutView;n=2048 (728ms) + ✓ LayoutView;n=4096 (717ms) + ✓ LayoutView;n=8192 (1887ms) + ✓ LayoutView;n=16384 (6441ms) + ✓ LayoutView;n=32768 (26462ms) + ✓ LayoutView;n=65536 (102443ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (14ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (93ms) + ✓ LayoutSQL;n=1024 (242ms) + ✓ LayoutSQL;n=2048 (925ms) + ✓ LayoutSQL;n=4096 (4209ms) + ✓ LayoutSQL;n=8192 (2040ms) + ✓ LayoutSQL;n=16384 (6801ms) + ✓ LayoutSQL;n=32768 (30268ms) + ✓ LayoutSQL;n=65536 (123912ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run5.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run5.test new file mode 100644 index 0000000000000000000000000000000000000000..f1f6de34b58ac643a0ace5b7862d2f004ceebbc8 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run5.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (28ms) + ✓ LayoutView;n=32 (11ms) + ✓ LayoutView;n=64 (20ms) + ✓ LayoutView;n=128 (38ms) + ✓ LayoutView;n=256 (84ms) + ✓ LayoutView;n=512 (199ms) + ✓ LayoutView;n=1024 (645ms) + ✓ LayoutView;n=2048 (875ms) + ✓ LayoutView;n=4096 (528ms) + ✓ LayoutView;n=8192 (1850ms) + ✓ LayoutView;n=16384 (6451ms) + ✓ LayoutView;n=32768 (27455ms) + ✓ LayoutView;n=65536 (123009ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (15ms) + ✓ LayoutSQL;n=256 (27ms) + ✓ LayoutSQL;n=512 (60ms) + ✓ LayoutSQL;n=1024 (268ms) + ✓ LayoutSQL;n=2048 (948ms) + ✓ LayoutSQL;n=4096 (4842ms) + ✓ LayoutSQL;n=8192 (2063ms) + ✓ LayoutSQL;n=16384 (6830ms) + ✓ LayoutSQL;n=32768 (32627ms) + ✓ LayoutSQL;n=65536 (131390ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run6.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run6.test new file mode 100644 index 0000000000000000000000000000000000000000..83f04b055b50ccebf7ec36704ed93bfae6f8d35d --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run6.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (29ms) + ✓ LayoutView;n=32 (12ms) + ✓ LayoutView;n=64 (61ms) + ✓ LayoutView;n=128 (37ms) + ✓ LayoutView;n=256 (83ms) + ✓ LayoutView;n=512 (191ms) + ✓ LayoutView;n=1024 (653ms) + ✓ LayoutView;n=2048 (677ms) + ✓ LayoutView;n=4096 (594ms) + ✓ LayoutView;n=8192 (2072ms) + ✓ LayoutView;n=16384 (7107ms) + ✓ LayoutView;n=32768 (29213ms) + ✓ LayoutView;n=65536 (122941ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (11ms) + ✓ LayoutSQL;n=128 (23ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (82ms) + ✓ LayoutSQL;n=1024 (213ms) + ✓ LayoutSQL;n=2048 (754ms) + ✓ LayoutSQL;n=4096 (4166ms) + ✓ LayoutSQL;n=8192 (2197ms) + ✓ LayoutSQL;n=16384 (7342ms) + ✓ LayoutSQL;n=32768 (34491ms) + ✓ LayoutSQL;n=65536 (123654ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run7.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run7.test new file mode 100644 index 0000000000000000000000000000000000000000..d95ec369cef8dd4e086b71c9849c759cc9723882 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run7.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (31ms) + ✓ LayoutView;n=32 (11ms) + ✓ LayoutView;n=64 (21ms) + ✓ LayoutView;n=128 (35ms) + ✓ LayoutView;n=256 (80ms) + ✓ LayoutView;n=512 (209ms) + ✓ LayoutView;n=1024 (562ms) + ✓ LayoutView;n=2048 (798ms) + ✓ LayoutView;n=4096 (586ms) + ✓ LayoutView;n=8192 (2006ms) + ✓ LayoutView;n=16384 (6646ms) + ✓ LayoutView;n=32768 (26544ms) + ✓ LayoutView;n=65536 (100163ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (28ms) + ✓ LayoutSQL;n=512 (72ms) + ✓ LayoutSQL;n=1024 (251ms) + ✓ LayoutSQL;n=2048 (1040ms) + ✓ LayoutSQL;n=4096 (4598ms) + ✓ LayoutSQL;n=8192 (2148ms) + ✓ LayoutSQL;n=16384 (7112ms) + ✓ LayoutSQL;n=32768 (31767ms) + ✓ LayoutSQL;n=65536 (127215ms) + + + 26 passing (5m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run8.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run8.test new file mode 100644 index 0000000000000000000000000000000000000000..985a6ce22c367af20a1f46509ca38c5d4360a221 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run8.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (26ms) + ✓ LayoutView;n=32 (10ms) + ✓ LayoutView;n=64 (18ms) + ✓ LayoutView;n=128 (38ms) + ✓ LayoutView;n=256 (79ms) + ✓ LayoutView;n=512 (191ms) + ✓ LayoutView;n=1024 (631ms) + ✓ LayoutView;n=2048 (966ms) + ✓ LayoutView;n=4096 (616ms) + ✓ LayoutView;n=8192 (1955ms) + ✓ LayoutView;n=16384 (6628ms) + ✓ LayoutView;n=32768 (26702ms) + ✓ LayoutView;n=65536 (125042ms) + ✓ LayoutSQL;n=16 (10ms) + ✓ LayoutSQL;n=32 (5ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (18ms) + ✓ LayoutSQL;n=256 (29ms) + ✓ LayoutSQL;n=512 (59ms) + ✓ LayoutSQL;n=1024 (254ms) + ✓ LayoutSQL;n=2048 (998ms) + ✓ LayoutSQL;n=4096 (4615ms) + ✓ LayoutSQL;n=8192 (2226ms) + ✓ LayoutSQL;n=16384 (6918ms) + ✓ LayoutSQL;n=32768 (30228ms) + ✓ LayoutSQL;n=65536 (132519ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear4/run9.test b/experiments/develop_processed_var_graph/2018-10-04/linear4/run9.test new file mode 100644 index 0000000000000000000000000000000000000000..fc14cd3df286416aa8305c2d8699b6dd6fb060fd --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear4/run9.test @@ -0,0 +1,44 @@ + +> blendb@0.0.1 test /home/blendb/blendb +> env $(cat config/test.env) ts-node node_modules/istanbul/lib/cli.js cover -x "**/*.spec.ts" -e .ts _mocha + + + + Article experiments + ✓ LayoutView;n=16 (23ms) + ✓ LayoutView;n=32 (8ms) + ✓ LayoutView;n=64 (14ms) + ✓ LayoutView;n=128 (29ms) + ✓ LayoutView;n=256 (47ms) + ✓ LayoutView;n=512 (110ms) + ✓ LayoutView;n=1024 (91ms) + ✓ LayoutView;n=2048 (187ms) + ✓ LayoutView;n=4096 (550ms) + ✓ LayoutView;n=8192 (1901ms) + ✓ LayoutView;n=16384 (6828ms) + ✓ LayoutView;n=32768 (27330ms) + ✓ LayoutView;n=65536 (118519ms) + ✓ LayoutSQL;n=16 (9ms) + ✓ LayoutSQL;n=32 (4ms) + ✓ LayoutSQL;n=64 (9ms) + ✓ LayoutSQL;n=128 (17ms) + ✓ LayoutSQL;n=256 (30ms) + ✓ LayoutSQL;n=512 (90ms) + ✓ LayoutSQL;n=1024 (258ms) + ✓ LayoutSQL;n=2048 (977ms) + ✓ LayoutSQL;n=4096 (4631ms) + ✓ LayoutSQL;n=8192 (2094ms) + ✓ LayoutSQL;n=16384 (7069ms) + ✓ LayoutSQL;n=32768 (32727ms) + ✓ LayoutSQL;n=65536 (136132ms) + + + 26 passing (6m) + + +=============================== Coverage summary =============================== +Statements : 57.44% ( 587/1022 ) +Branches : 32.32% ( 138/427 ) +Functions : 54.04% ( 107/198 ) +Lines : 57.91% ( 560/967 ) +================================================================================ diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/1024-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/128-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/128-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/16384-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/2048-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/256-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/256-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32-Layout.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-Layout.R new file mode 100644 index 0000000000000000000000000000000000000000..37ce9aabe7c0634570fce375e9cad57f21a54a73 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-Layout.R @@ -0,0 +1,4 @@ +Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : + line 2 did not have 11 elements +Calls: read.table -> scan +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.R b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.R new file mode 100644 index 0000000000000000000000000000000000000000..b2c7b3d6bfc1cdd9a9e0204f3f5af60c19296fe4 --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.R @@ -0,0 +1,3 @@ +Error in read.table(opt, header = FALSE, sep = " ") : + no lines available in input +Execution halted diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.res b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.res new file mode 100644 index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc --- /dev/null +++ b/experiments/develop_processed_var_graph/2018-10-04/linear8/32-LayoutSQL.res @@ -0,0 +1 @@ + diff --git a/experiments/develop_processed_var_graph/2018-10-04/linear8/32768-Layout.R b/experiments/develop_processed_var_graph/2018-10-04